Files
oh-my-zsh/plugins/node/node.plugin.zsh
T

7 lines
241 B
Bash
Raw Normal View History

2011-05-28 11:20:48 -04:00
# Open the node api for your current version to the optional section.
# TODO: Make the section part easier to use.
2011-05-30 10:07:15 -04:00
function node-docs {
local section=${1:-all}
2016-11-11 07:47:43 +05:30
open_command "https://nodejs.org/docs/$(node --version)/api/$section.html"
2011-05-28 11:20:48 -04:00
}