X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch-completion.bash;h=868e9cde9d7a3756a61750a83836954b9387f04f;hp=ad55f6d3c9d4d84f1157bb5208ad755dde665460;hb=024cdf8e3c2e6dd54687c814703e800788b2eebc;hpb=533d0f5382797c702ac3976c1a7da27590ec1fb9;ds=sidebyside diff --git a/notmuch-completion.bash b/notmuch-completion.bash index ad55f6d3..868e9cde 100644 --- a/notmuch-completion.bash +++ b/notmuch-completion.bash @@ -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