]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/dnote/README.md
initial
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / dnote / README.md
1 # Dnote Plugin
2
3 This plugin adds auto-completion for [Dnote](https://www.getdnote.com/), a simple command line notebook.
4
5 To use it, add `dnote` to the plugins array in your zshrc file:
6
7 ```zsh
8 plugins=(dnote)
9 ```
10
11 ## Usage
12
13 At the basic level, this plugin completes all Dnote commands.
14
15 ```zsh
16 $ dnote a(press <TAB> here)
17 ```
18
19 would result in:
20
21 ```zsh
22 $ dnote add
23 ```
24
25 For some commands, this plugin dynamically suggests matching book names.
26
27 For instance, if you have three books that begin with 'j': 'javascript', 'job', 'js',
28
29 ```zsh
30 $ dnote view j(press <TAB> here)
31 ```
32
33 would result in:
34
35 ```zsh
36 $ dnote v j
37 javascript  job         js
38 ```
39
40 As another example,
41
42 ```zsh
43 $ dnote edit ja(press <TAB> here)
44 ```
45
46 would result in:
47
48
49 ```zsh
50 $ dnote v javascript
51 ``````