1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-03 18:10:28 +00:00
prezto/modules/node/init.zsh

20 lines
341 B
Bash
Raw Normal View History

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