]> git.notmuchmail.org Git - notmuch/blob - notmuch-completion.bash
bash-completion: Whitespace fix
[notmuch] / notmuch-completion.bash
1 # Bash completion for notmuch
2 #
3 # Copyright © 2009 Carl Worth
4 #
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see http://www.gnu.org/licenses/ .
17 #
18 # Author: Carl Worth <cworth@cworth.org>
19 #
20 # Based on "notmuch help" as follows:
21 #
22 # Usage: notmuch <command> [args...]
23 #
24 # Where <command> and [args...] are as follows:
25 #
26 #       setup
27 #
28 #       new
29 #
30 #       search [options] <search-term> [...]
31 #
32 #       show <search-terms>
33 #
34 #       reply <search-terms>
35 #
36 #       tag +<tag>|-<tag> [...] [--] <search-terms> [...]
37 #
38 #       dump [<filename>]
39 #
40 #       restore <filename>
41 #
42 #       help [<command>]
43
44 _notmuch()
45 {
46     current="$2"
47
48     commands="setup new search show reply tag dump restore help"
49
50     help_options="setup new search show reply tag dump restore search-terms"
51
52     COMPREPLY=()
53     prev=${COMP_WORDS[COMP_CWORD-1]}
54
55     if [[ "$COMP_CWORD" == "1" ]]; then
56         COMPREPLY=( $(compgen -W "${commands}" -- ${current}) )
57     fi
58
59     if [[ $prev = "help" && "$COMP_CWORD" == "2" ]]; then
60         COMPREPLY=( $(compgen -W "${help_options}" -- ${current}) )
61     fi
62 }
63 complete -o default -o bashdefault -F _notmuch notmuch