mirror of
https://github.com/sorin-ionescu/prezto.git
synced 2025-03-22 01:05:46 +08:00
10 lines
257 B
Bash
10 lines
257 B
Bash
# Complete npm.
|
|
eval "$(npm completion 2>/dev/null)"
|
|
|
|
# Open the node api for your current version to the optional section.
|
|
# TODO: Make the sections easier to use.
|
|
function node-docs() {
|
|
open "http://nodejs.org/docs/$(node --version)/api/all.html#$1"
|
|
}
|
|
|