1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
use crate;
use CommandFactory;
use ;
use stdout;
/// Print completions for the given shell.
///
/// These can be sourced directly, e.g.:
///
/// for fish run:
/// ```
/// jobber completions fish | source
/// ```
///
/// for zsh run:
/// ```
/// source <(jobber completions zsh)
/// ```
///
/// But they can also be loaded/stored permanently, e.g.:
///
/// for zsh run:
/// ```
/// mkdir -p ~/.zsh/completions
/// jobber completions zsh > ~/.zsh/completions/_jobber
/// ```
/// ...and add this to your .zshrc:
/// ```
/// fpath=(~/.zsh/completions $fpath)
/// autoload -Uz compinit && compinit
///```
/// for fish just run:
/// ```
/// jobber completions fish > ~/.config/fish/completions/jobber.fish
/// ```
pub