X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=notmuch-completion.bash;h=42557173212a13c9359b3f3e64b352b9d8665450;hb=2ce25b93a72b4a8d6daa5321f9ef7df0772a789f;hp=ad55f6d3c9d4d84f1157bb5208ad755dde665460;hpb=36809b5dfb2344c9d3ce4220b2717fd0306e216b;p=notmuch diff --git a/notmuch-completion.bash b/notmuch-completion.bash index ad55f6d3..42557173 100644 --- a/notmuch-completion.bash +++ b/notmuch-completion.bash @@ -1,4 +1,4 @@ -# Bash completion for notmutch +# Bash completion for notmuch # # Copyright © 2009 Carl Worth # @@ -27,24 +27,37 @@ # # new # -# search [...] +# search [options] [...] # -# show +# show +# +# reply +# +# tag +|- [...] [--] [...] # # dump [] # # restore +# +# help [] _notmuch() { current="$2" - commands="help setup new search show dump restore" + commands="setup new search show reply tag dump restore help" + + help_options="setup new search show reply tag dump restore search-terms" COMPREPLY=() + prev=${COMP_WORDS[COMP_CWORD-1]} if [ "$COMP_CWORD" = "1" ]; then COMPREPLY=( $(compgen -W "${commands}" -- ${current}) ) fi + + if [ $prev = "help" ] && [ "$COMP_CWORD" = "2" ]; then + COMPREPLY=( $(compgen -W "${help_options}" -- ${current}) ) + fi } complete -o default -o bashdefault -F _notmuch notmuch