]> git.notmuchmail.org Git - notmuch/blob - notmuch-completion.bash
notmuch.el: Add command to (a)rchive a thread from notmuch-show mode.
[notmuch] / notmuch-completion.bash
1 # Bash completion for notmutch
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 <search-term> [...]
31 #
32 #       show <thread-id>
33 #
34 #       dump [<filename>]
35 #
36 #       restore <filename>
37
38 _notmuch()
39 {
40     current="$2"
41
42     commands="help setup new search show dump restore"
43
44     COMPREPLY=()
45
46     if [ "$COMP_CWORD" = "1" ]; then
47         COMPREPLY=( $(compgen -W "${commands}" -- ${current}) )
48     fi
49 }
50 complete -o default -o bashdefault -F _notmuch notmuch