diff options
author | Robby Russell <robby@planetargon.com> | 2012-12-02 12:25:02 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2012-12-02 12:25:02 -0800 |
commit | 7004ac9ec4c4c48bcdc7f40091b8df42a85a65b2 (patch) | |
tree | ef7b105ac51689e286d66f4723ee8f9ebfa7963c | |
parent | d5eddc653fc00f2b41e8bda43017564f35a6ee6a (diff) | |
parent | 7e2156a1b17a16243e92569c4df82c562f75ffb2 (diff) | |
download | zsh-7004ac9ec4c4c48bcdc7f40091b8df42a85a65b2.tar.gz zsh-7004ac9ec4c4c48bcdc7f40091b8df42a85a65b2.tar.bz2 zsh-7004ac9ec4c4c48bcdc7f40091b8df42a85a65b2.zip |
Merge pull request #1371 from rdrey/master
Fixed node-docs
-rw-r--r-- | plugins/node/node.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/node/node.plugin.zsh b/plugins/node/node.plugin.zsh index 519bc18da..3bbed6f04 100644 --- a/plugins/node/node.plugin.zsh +++ b/plugins/node/node.plugin.zsh @@ -1,5 +1,5 @@ # Open the node api for your current version to the optional section. # TODO: Make the section part easier to use. function node-docs { - open "http://nodejs.org/docs/$(node --version)/api/all.html#$1" + open "http://nodejs.org/docs/$(node --version)/api/all.html#all_$1" } |