This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/plugins/node/init.zsh

12 lines
259 B
Bash
Raw Normal View History

2011-08-27 21:02:46 -04:00
# Complete npm.
2011-08-27 21:03:50 -04:00
cache_file="${0:h}/cache.zsh"
if [[ ! -f "$cache_file" ]] && (( $+commands[npm] )); then
# npm is slow; cache its output.
2011-08-30 23:16:15 -04:00
npm completion >! "$cache_file" 2> /dev/null
2011-08-27 21:03:50 -04:00
source "$cache_file"
else
source "$cache_file"
fi
unset cache_file
2011-08-27 21:02:46 -04:00