2012-02-01 05:37:51 +01:00
|
|
|
#
|
|
|
|
# Completes npm.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2011-08-28 03:03:50 +02:00
|
|
|
cache_file="${0:h}/cache.zsh"
|
|
|
|
if [[ ! -f "$cache_file" ]] && (( $+commands[npm] )); then
|
|
|
|
# npm is slow; cache its output.
|
2011-08-31 05:16:15 +02:00
|
|
|
npm completion >! "$cache_file" 2> /dev/null
|
2011-08-28 03:03:50 +02:00
|
|
|
source "$cache_file"
|
|
|
|
else
|
|
|
|
source "$cache_file"
|
|
|
|
fi
|
|
|
|
unset cache_file
|
2011-08-28 03:02:46 +02:00
|
|
|
|