README.md 509 Bytes
Newer Older
1
2
3
# Dash plugin

This plugin adds command line functionality for [Dash](https://kapeli.com/dash),
4
5
an API Documentation Browser for macOS. This plugin requires Dash to be installed
to work.
6
7
8
9
10
11
12
13
14

To use it, add `dash` to the plugins array in your zshrc file:

```zsh
plugins=(... dash)
```

## Usage

15
- Open and switch to the dash application.
16
17
18
19
```
dash
```

20
21
22
23
24
25
- Query for something in dash app: `dash query`
```
dash golang 
```

- You can optionally provide a keyword: `dash [keyword:]query`
26
```
27
dash python:tuple
28
```