npm: only load completion if npm exists

master
Marc Cornellà 10 years ago
parent 3b8d0ad9d0
commit 136a83433a
  1. 10
      plugins/npm/npm.plugin.zsh

@ -1,8 +1,10 @@
__NPM_COMPLETION_FILE="${ZSH_CACHE_DIR}/npm_completion"
(( $+commands[npm] )) && {
__NPM_COMPLETION_FILE="${ZSH_CACHE_DIR}/npm_completion"
if [[ ! -f $__NPM_COMPLETION_FILE ]]; then
npm completion >! $__NPM_COMPLETION_FILE || rm -f $__NPM_COMPLETION_FILE
fi
if [[ ! -f $__NPM_COMPLETION_FILE ]]; then
npm completion >! $__NPM_COMPLETION_FILE || rm -f $__NPM_COMPLETION_FILE
fi
}
source $__NPM_COMPLETION_FILE

Loading…
Cancel
Save