mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-01 21:51:40 +02:00
9 lines
173 B
Text
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
|