mirror of
				https://github.com/dcarrillo/prezto.git
				synced 2025-11-04 02:49:08 +00:00 
			
		
		
		
	Make .zcomp* location configurable (#1842)
This commit is contained in:
		@@ -21,11 +21,12 @@ elif (( $+commands[brew] )); then
 | 
				
			|||||||
    "$(brew --repository 2> /dev/null)"/Library/Taps/*/*/cmd/brew-command-not-found-init(|.rb)(.N)
 | 
					    "$(brew --repository 2> /dev/null)"/Library/Taps/*/*/cmd/brew-command-not-found-init(|.rb)(.N)
 | 
				
			||||||
  )
 | 
					  )
 | 
				
			||||||
  if (( $#cnf_command )); then
 | 
					  if (( $#cnf_command )); then
 | 
				
			||||||
    cache_file="${TMPDIR:-/tmp}/prezto-brew-command-not-found-cache.$UID.zsh"
 | 
					    cache_file="${XDG_CACHE_HOME:-$HOME/.cache}/prezto/brew-command-not-found-cache.zsh"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if [[ "${${(@o)cnf_command}[1]}" -nt "$cache_file" \
 | 
					    if [[ "${${(@o)cnf_command}[1]}" -nt "$cache_file" \
 | 
				
			||||||
          || "${ZDOTDIR:-$HOME}/.zpreztorc" -nt "$cache_file" \
 | 
					          || "${ZDOTDIR:-$HOME}/.zpreztorc" -nt "$cache_file" \
 | 
				
			||||||
          || ! -s "$cache_file" ]]; then
 | 
					          || ! -s "$cache_file" ]]; then
 | 
				
			||||||
 | 
					      mkdir -p "$cache_file:h"
 | 
				
			||||||
      # brew command-not-found-init is slow; cache its output.
 | 
					      # brew command-not-found-init is slow; cache its output.
 | 
				
			||||||
      brew command-not-found-init >! "$cache_file" 2> /dev/null
 | 
					      brew command-not-found-init >! "$cache_file" 2> /dev/null
 | 
				
			||||||
    fi
 | 
					    fi
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -32,13 +32,16 @@ unsetopt FLOW_CONTROL      # Disable start/stop characters in shell editor.
 | 
				
			|||||||
# cache time of 20 hours, so it should almost always regenerate the first time a
 | 
					# cache time of 20 hours, so it should almost always regenerate the first time a
 | 
				
			||||||
# shell is opened each day.
 | 
					# shell is opened each day.
 | 
				
			||||||
autoload -Uz compinit
 | 
					autoload -Uz compinit
 | 
				
			||||||
_comp_files=(${ZDOTDIR:-$HOME}/.zcompdump(Nm-20))
 | 
					_comp_path="${XDG_CACHE_HOME:-$HOME/.cache}/prezto/zcompdump"
 | 
				
			||||||
if (( $#_comp_files )); then
 | 
					# #q expands globs in conditional expressions
 | 
				
			||||||
  compinit -i -C
 | 
					if [[ $_comp_path(#qNmh-20) ]]; then
 | 
				
			||||||
 | 
					  # -C (skip function check) implies -i (skip security check).
 | 
				
			||||||
 | 
					  compinit -C -d "$_comp_path"
 | 
				
			||||||
else
 | 
					else
 | 
				
			||||||
  compinit -i
 | 
					  mkdir -p "$_comp_path:h"
 | 
				
			||||||
 | 
					  compinit -i -d "$_comp_path"
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
unset _comp_files
 | 
					unset _comp_path
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# Styles
 | 
					# Styles
 | 
				
			||||||
@@ -46,7 +49,7 @@ unset _comp_files
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
# Use caching to make completion for commands such as dpkg and apt usable.
 | 
					# Use caching to make completion for commands such as dpkg and apt usable.
 | 
				
			||||||
zstyle ':completion::complete:*' use-cache on
 | 
					zstyle ':completion::complete:*' use-cache on
 | 
				
			||||||
zstyle ':completion::complete:*' cache-path "${ZDOTDIR:-$HOME}/.zcompcache"
 | 
					zstyle ':completion::complete:*' cache-path "${XDG_CACHE_HOME:-$HOME/.cache}/prezto/zcompcache"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Case-insensitive (all), partial-word, and then substring completion.
 | 
					# Case-insensitive (all), partial-word, and then substring completion.
 | 
				
			||||||
if zstyle -t ':prezto:module:completion:*' case-sensitive; then
 | 
					if zstyle -t ':prezto:module:completion:*' case-sensitive; then
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -19,7 +19,7 @@ fi
 | 
				
			|||||||
# Initialization
 | 
					# Initialization
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
cache_file="${TMPDIR:-/tmp}/prezto-fasd-cache.$UID.zsh"
 | 
					cache_file="${XDG_CACHE_HOME:-$HOME/.cache}/prezto/fasd-cache.zsh"
 | 
				
			||||||
if [[ "${commands[fasd]}" -nt "$cache_file" \
 | 
					if [[ "${commands[fasd]}" -nt "$cache_file" \
 | 
				
			||||||
      || "${ZDOTDIR:-$HOME}/.zpreztorc" -nt "$cache_file" \
 | 
					      || "${ZDOTDIR:-$HOME}/.zpreztorc" -nt "$cache_file" \
 | 
				
			||||||
      || ! -s "$cache_file"  ]]; then
 | 
					      || ! -s "$cache_file"  ]]; then
 | 
				
			||||||
@@ -31,6 +31,7 @@ if [[ "${commands[fasd]}" -nt "$cache_file" \
 | 
				
			|||||||
    init_args+=(zsh-ccomp zsh-ccomp-install zsh-wcomp zsh-wcomp-install)
 | 
					    init_args+=(zsh-ccomp zsh-ccomp-install zsh-wcomp zsh-wcomp-install)
 | 
				
			||||||
  fi
 | 
					  fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  mkdir -p "$cache_file:h"
 | 
				
			||||||
  # Cache init code.
 | 
					  # Cache init code.
 | 
				
			||||||
  fasd --init "$init_args[@]" >! "$cache_file" 2> /dev/null
 | 
					  fasd --init "$init_args[@]" >! "$cache_file" 2> /dev/null
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -12,7 +12,7 @@ fi
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
# Set the default paths to gpg-agent files.
 | 
					# Set the default paths to gpg-agent files.
 | 
				
			||||||
_gpg_agent_conf="${GNUPGHOME:-$HOME/.gnupg}/gpg-agent.conf"
 | 
					_gpg_agent_conf="${GNUPGHOME:-$HOME/.gnupg}/gpg-agent.conf"
 | 
				
			||||||
_gpg_agent_env="${TMPDIR:-/tmp}/gpg-agent.env.$UID"
 | 
					_gpg_agent_env="${XDG_CACHE_HOME:-$HOME/.cache}/prezto/gpg-agent.env"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Load environment variables from previous run
 | 
					# Load environment variables from previous run
 | 
				
			||||||
source "$_gpg_agent_env" 2> /dev/null
 | 
					source "$_gpg_agent_env" 2> /dev/null
 | 
				
			||||||
@@ -21,6 +21,7 @@ source "$_gpg_agent_env" 2> /dev/null
 | 
				
			|||||||
if [[ -z "$GPG_AGENT_INFO" && ! -S "${GNUPGHOME:-$HOME/.gnupg}/S.gpg-agent" ]]; then
 | 
					if [[ -z "$GPG_AGENT_INFO" && ! -S "${GNUPGHOME:-$HOME/.gnupg}/S.gpg-agent" ]]; then
 | 
				
			||||||
  # Start gpg-agent if not started.
 | 
					  # Start gpg-agent if not started.
 | 
				
			||||||
  if ! ps -U "$LOGNAME" -o pid,ucomm | grep -q -- "${${${(s.:.)GPG_AGENT_INFO}[2]}:--1} gpg-agent"; then
 | 
					  if ! ps -U "$LOGNAME" -o pid,ucomm | grep -q -- "${${${(s.:.)GPG_AGENT_INFO}[2]}:--1} gpg-agent"; then
 | 
				
			||||||
 | 
					    mkdir -p "$_gpg_agent_env:h"
 | 
				
			||||||
    eval "$(gpg-agent --daemon | tee "$_gpg_agent_env")"
 | 
					    eval "$(gpg-agent --daemon | tee "$_gpg_agent_env")"
 | 
				
			||||||
  fi
 | 
					  fi
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -39,12 +39,13 @@ typeset -A compl_commands=(
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
for compl_command in "${(k)compl_commands[@]}"; do
 | 
					for compl_command in "${(k)compl_commands[@]}"; do
 | 
				
			||||||
  if (( $+commands[$compl_command] )); then
 | 
					  if (( $+commands[$compl_command] )); then
 | 
				
			||||||
    cache_file="${TMPDIR:-/tmp}/prezto-$compl_command-cache.$UID.zsh"
 | 
					    cache_file="${XDG_CACHE_HOME:-$HOME/.cache}/prezto/$compl_command-cache.zsh"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # Completion commands are slow; cache their output if old or missing.
 | 
					    # Completion commands are slow; cache their output if old or missing.
 | 
				
			||||||
    if [[ "$commands[$compl_command]" -nt "$cache_file" \
 | 
					    if [[ "$commands[$compl_command]" -nt "$cache_file" \
 | 
				
			||||||
          || "${ZDOTDIR:-$HOME}/.zpreztorc" -nt "$cache_file" \
 | 
					          || "${ZDOTDIR:-$HOME}/.zpreztorc" -nt "$cache_file" \
 | 
				
			||||||
          || ! -s "$cache_file" ]]; then
 | 
					          || ! -s "$cache_file" ]]; then
 | 
				
			||||||
 | 
					      mkdir -p "$cache_file:h"
 | 
				
			||||||
      command ${=compl_commands[$compl_command]} >! "$cache_file" 2> /dev/null
 | 
					      command ${=compl_commands[$compl_command]} >! "$cache_file" 2> /dev/null
 | 
				
			||||||
    fi
 | 
					    fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -8,11 +8,11 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
# function pacman-list-disowned {
 | 
					# function pacman-list-disowned {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
local tmp="${TMPDIR:-/tmp}/pacman-disowned-$UID-$$"
 | 
					local tmp="${XDG_CACHE_HOME:-$HOME/.cache}/prezto/pacman-disowned-$$"
 | 
				
			||||||
local db="$tmp/db"
 | 
					local db="$tmp/db"
 | 
				
			||||||
local fs="$tmp/fs"
 | 
					local fs="$tmp/fs"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
mkdir "$tmp"
 | 
					mkdir -p "$tmp"
 | 
				
			||||||
trap  'rm -rf "$tmp"' EXIT
 | 
					trap  'rm -rf "$tmp"' EXIT
 | 
				
			||||||
 | 
					
 | 
				
			||||||
pacman --quiet --query --list | sort --unique > "$db"
 | 
					pacman --quiet --query --list | sort --unique > "$db"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -42,11 +42,12 @@ fi
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
if is-darwin; then
 | 
					if is-darwin; then
 | 
				
			||||||
  # Perl is slow; cache its output.
 | 
					  # Perl is slow; cache its output.
 | 
				
			||||||
  cache_file="${TMPDIR:-/tmp}/prezto-perl-cache.$UID.zsh"
 | 
					  cache_file="${XDG_CACHE_HOME:-$HOME/.cache}/prezto/perl-cache.zsh"
 | 
				
			||||||
  perl_path="$HOME/Library/Perl/5.12"
 | 
					  perl_path="$HOME/Library/Perl/5.12"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  if [[ -f "$perl_path/lib/perl5/local/lib.pm" ]]; then
 | 
					  if [[ -f "$perl_path/lib/perl5/local/lib.pm" ]]; then
 | 
				
			||||||
    if [[ "${ZDOTDIR:-$HOME}/.zpreztorc" -nt "$cache_file" || ! -s "$cache_file" ]]; then
 | 
					    if [[ "${ZDOTDIR:-$HOME}/.zpreztorc" -nt "$cache_file" || ! -s "$cache_file" ]]; then
 | 
				
			||||||
 | 
					      mkdir -p "$cache_file:h"
 | 
				
			||||||
      perl -I$perl_path/lib/perl5 -Mlocal::lib=$perl_path >! "$cache_file"
 | 
					      perl -I$perl_path/lib/perl5 -Mlocal::lib=$perl_path >! "$cache_file"
 | 
				
			||||||
    fi
 | 
					    fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -148,7 +148,7 @@ fi
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
# Load PIP completion.
 | 
					# Load PIP completion.
 | 
				
			||||||
if (( $#commands[(i)pip(|[23])] )); then
 | 
					if (( $#commands[(i)pip(|[23])] )); then
 | 
				
			||||||
  cache_file="${TMPDIR:-/tmp}/prezto-pip-cache.$UID.zsh"
 | 
					  cache_file="${XDG_CACHE_HOME:-$HOME/.cache}/prezto/pip-cache.zsh"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  # Detect and use one available from among 'pip', 'pip2', 'pip3' variants
 | 
					  # Detect and use one available from among 'pip', 'pip2', 'pip3' variants
 | 
				
			||||||
  pip_command="$commands[(i)pip(|[23])]"
 | 
					  pip_command="$commands[(i)pip(|[23])]"
 | 
				
			||||||
@@ -156,6 +156,7 @@ if (( $#commands[(i)pip(|[23])] )); then
 | 
				
			|||||||
  if [[ "$pip_command" -nt "$cache_file" \
 | 
					  if [[ "$pip_command" -nt "$cache_file" \
 | 
				
			||||||
        || "${ZDOTDIR:-$HOME}/.zpreztorc" -nt "$cache_file" \
 | 
					        || "${ZDOTDIR:-$HOME}/.zpreztorc" -nt "$cache_file" \
 | 
				
			||||||
        || ! -s "$cache_file" ]]; then
 | 
					        || ! -s "$cache_file" ]]; then
 | 
				
			||||||
 | 
					    mkdir -p "$cache_file:h"
 | 
				
			||||||
    # pip is slow; cache its output. And also support 'pip2', 'pip3' variants
 | 
					    # pip is slow; cache its output. And also support 'pip2', 'pip3' variants
 | 
				
			||||||
    $pip_command completion --zsh \
 | 
					    $pip_command completion --zsh \
 | 
				
			||||||
      | sed -e "s/\(compctl -K [-_[:alnum:]]* pip\).*/\1{,2,3}{,.{0..9}}/" \
 | 
					      | sed -e "s/\(compctl -K [-_[:alnum:]]* pip\).*/\1{,2,3}{,.{0..9}}/" \
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -14,10 +14,10 @@ fi
 | 
				
			|||||||
_ssh_dir="$HOME/.ssh"
 | 
					_ssh_dir="$HOME/.ssh"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Set the path to the environment file if not set by another module.
 | 
					# Set the path to the environment file if not set by another module.
 | 
				
			||||||
_ssh_agent_env="${_ssh_agent_env:-${TMPDIR:-/tmp}/ssh-agent.env.$UID}"
 | 
					_ssh_agent_env="${_ssh_agent_env:-${XDG_CACHE_HOME:-$HOME/.cache}/prezto/ssh-agent.env}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Set the path to the persistent authentication socket.
 | 
					# Set the path to the persistent authentication socket.
 | 
				
			||||||
_ssh_agent_sock="${TMPDIR:-/tmp}/ssh-agent.sock.$UID"
 | 
					_ssh_agent_sock="${XDG_CACHE_HOME:-$HOME/.cache}/prezto/ssh-agent.sock"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Start ssh-agent if not started.
 | 
					# Start ssh-agent if not started.
 | 
				
			||||||
if [[ ! -S "$SSH_AUTH_SOCK" ]]; then
 | 
					if [[ ! -S "$SSH_AUTH_SOCK" ]]; then
 | 
				
			||||||
@@ -26,12 +26,14 @@ if [[ ! -S "$SSH_AUTH_SOCK" ]]; then
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  # Start ssh-agent if not started.
 | 
					  # Start ssh-agent if not started.
 | 
				
			||||||
  if ! ps -U "$LOGNAME" -o pid,ucomm | grep -q -- "${SSH_AGENT_PID:--1} ssh-agent"; then
 | 
					  if ! ps -U "$LOGNAME" -o pid,ucomm | grep -q -- "${SSH_AGENT_PID:--1} ssh-agent"; then
 | 
				
			||||||
 | 
					    mkdir -p "$_ssh_agent_env:h"
 | 
				
			||||||
    eval "$(ssh-agent | sed '/^echo /d' | tee "$_ssh_agent_env")"
 | 
					    eval "$(ssh-agent | sed '/^echo /d' | tee "$_ssh_agent_env")"
 | 
				
			||||||
  fi
 | 
					  fi
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Create a persistent SSH authentication socket.
 | 
					# Create a persistent SSH authentication socket.
 | 
				
			||||||
if [[ -S "$SSH_AUTH_SOCK" && "$SSH_AUTH_SOCK" != "$_ssh_agent_sock" ]]; then
 | 
					if [[ -S "$SSH_AUTH_SOCK" && "$SSH_AUTH_SOCK" != "$_ssh_agent_sock" ]]; then
 | 
				
			||||||
 | 
					  mkdir -p "$_ssh_agent_sock:h"
 | 
				
			||||||
  ln -sf "$SSH_AUTH_SOCK" "$_ssh_agent_sock"
 | 
					  ln -sf "$SSH_AUTH_SOCK" "$_ssh_agent_sock"
 | 
				
			||||||
  export SSH_AUTH_SOCK="$_ssh_agent_sock"
 | 
					  export SSH_AUTH_SOCK="$_ssh_agent_sock"
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -8,7 +8,7 @@
 | 
				
			|||||||
# Execute code that does not affect the current session in the background.
 | 
					# Execute code that does not affect the current session in the background.
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  # Compile the completion dump to increase startup speed.
 | 
					  # Compile the completion dump to increase startup speed.
 | 
				
			||||||
  zcompdump="${ZDOTDIR:-$HOME}/.zcompdump"
 | 
					  zcompdump="${XDG_CACHE_HOME:-$HOME/.cache}/prezto/zcompdump"
 | 
				
			||||||
  if [[ -s "$zcompdump" && (! -s "${zcompdump}.zwc" || "$zcompdump" -nt "${zcompdump}.zwc") ]]; then
 | 
					  if [[ -s "$zcompdump" && (! -s "${zcompdump}.zwc" || "$zcompdump" -nt "${zcompdump}.zwc") ]]; then
 | 
				
			||||||
    zcompile "$zcompdump"
 | 
					    zcompile "$zcompdump"
 | 
				
			||||||
  fi
 | 
					  fi
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user