Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
5aa6b0fa
Commit
5aa6b0fa
authored
May 01, 2011
by
Sorin Ionescu
Browse files
Replaced npm 0.x completion with 1.0 completion.
parent
3bb21afa
Changes
2
Hide whitespace changes
Inline
Side-by-side
plugins/npm/_npm
deleted
100644 → 0
View file @
3bb21afa
#compdef npm
# Node Package Manager 0.3.15 completion, letting npm do all the completion work
_npm() {
compadd -- $(_npm_complete $words)
}
# We want to show all errors of any substance, but never the "npm (not )ok" one.
# (Also doesn't consider "ERR! no match found" worth breaking the terminal for.)
_npm_complete() {
local ask_npm
ask_npm=(npm completion --color false --loglevel error -- $@)
{ _call_program npm $ask_npm 2>&1 >&3 \
| egrep -v '^(npm (not |)ok|ERR! no match found)$' >&2; \
} 3>&1
}
_npm "$@"
plugins/npm/npm.plugin.zsh
0 → 100644
View file @
5aa6b0fa
eval
"
$(
npm completion 2>/dev/null
)
"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment