1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-09 15:43:54 +00:00
prezto/plugins/node/init.zsh

18 lines
462 B
Bash
Raw Normal View History

2011-08-28 01:02:46 +00:00
# Complete npm.
2011-08-28 01:03:50 +00:00
cache_file="${0:h}/cache.zsh"
if [[ ! -f "$cache_file" ]] && (( $+commands[npm] )); then
# npm is slow; cache its output.
2011-08-31 03:16:15 +00:00
npm completion >! "$cache_file" 2> /dev/null
2011-08-28 01:03:50 +00:00
source "$cache_file"
else
source "$cache_file"
fi
unset cache_file
2011-08-28 01:02:46 +00:00
# Open the node api for your current version to the optional section.
2011-08-28 01:02:46 +00:00
# TODO: Make the sections easier to use.
function node-docs() {
open "http://nodejs.org/docs/$(node --version)/api/all.html#$1"
}
2011-08-28 01:02:46 +00:00