0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-12 04:01:14 +02:00
ohmyzsh/plugins/node/node.plugin.zsh
2016-11-11 03:17:43 +01:00

6 lines
241 B
Bash

# Open the node api for your current version to the optional section.
# TODO: Make the section part easier to use.
function node-docs {
local section=${1:-all}
open_command "https://nodejs.org/docs/$(node --version)/api/$section.html"
}