1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-01 21:51:40 +02:00
zsh/Completion/Unix/Command/_npm
2014-02-24 09:32:01 +00:00

9 lines
173 B
Text

#compdef npm
# Node Package Manager completion, letting npm do all the completion work
if type npm > /dev/null; then
eval "$(npm completion)"
_npm_completion "$@"
fi