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.

28 lines
509 B

3 years ago
  1. # Dash plugin
  2. This plugin adds command line functionality for [Dash](https://kapeli.com/dash),
  3. an API Documentation Browser for macOS. This plugin requires Dash to be installed
  4. to work.
  5. To use it, add `dash` to the plugins array in your zshrc file:
  6. ```zsh
  7. plugins=(... dash)
  8. ```
  9. ## Usage
  10. - Open and switch to the dash application.
  11. ```
  12. dash
  13. ```
  14. - Query for something in dash app: `dash query`
  15. ```
  16. dash golang
  17. ```
  18. - You can optionally provide a keyword: `dash [keyword:]query`
  19. ```
  20. dash python:tuple
  21. ```