my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
431 B

3 years ago
  1. # node plugin
  2. This plugin adds `node-docs` function that opens specific section in [Node.js](https://nodejs.org)
  3. documentation (depending on the installed version).
  4. To use it, add `node` to the plugins array of your zshrc file:
  5. ```zsh
  6. plugins=(... node)
  7. ```
  8. ## Usage
  9. ```zsh
  10. # Opens https://nodejs.org/docs/latest-v10.x/api/fs.html
  11. $ node-docs fs
  12. # Opens https://nodejs.org/docs/latest-v10.x/api/path.html
  13. $ node-docs path
  14. ```