mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-01 04:30:37 +02:00
9 lines
319 B
Bash
9 lines
319 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 {
|
|
if [ $# -eq 0 ]; then
|
|
open_command "http://nodejs.org/docs/$(node --version)/api/all.html"
|
|
else
|
|
open_command "http://nodejs.org/docs/$(node --version)/api/$1.html"
|
|
fi
|
|
}
|