Skip to content

Commit

Permalink
node: Cache completion for additional helpers
Browse files Browse the repository at this point in the history
Add support for npm and additional well-known helper commands
  • Loading branch information
indrajitr committed Dec 11, 2018
1 parent e7fea33 commit a2398fc
Showing 1 changed file with 23 additions and 13 deletions.
36 changes: 23 additions & 13 deletions modules/node/init.zsh
Expand Up @@ -28,18 +28,28 @@ elif (( ! $+commands[node] )); then
return 1
fi

# Load NPM completion.
if (( $+commands[npm] )); then
cache_file="${TMPDIR:-/tmp}/prezto-node-cache.$UID.zsh"

if [[ "$commands[npm]" -nt "$cache_file" \
|| "${ZDOTDIR:-$HOME}/.zpreztorc" -nt "$cache_file" \
|| ! -s "$cache_file" ]]; then
# npm is slow; cache its output.
npm completion >! "$cache_file" 2> /dev/null
# Load NPM and known helper completions.
typeset -A compl_commands=(
npm 'npm completion'
grunt 'grunt --completion=zsh'
gupl 'gulp --completion=zsh'
)

for compl_command in "${(k)compl_commands[@]}"; do
if (( $+commands[$compl_command] )); then
cache_file="${TMPDIR:-/tmp}/prezto-$compl_command-cache.$UID.zsh"

# Completion commands are slow; cache their output if old or missing.
if [[ "$commands[$compl_command]" -nt "$cache_file" \
|| "${ZDOTDIR:-$HOME}/.zpreztorc" -nt "$cache_file" \
|| ! -s "$cache_file" ]]; then
command ${=compl_commands[$compl_command]} >! "$cache_file" 2> /dev/null
fi

source "$cache_file"

unset cache_file
fi
done

source "$cache_file"

unset cache_file
fi
unset compl_command{s,}

0 comments on commit a2398fc

Please sign in to comment.