X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch-completion.bash;h=8665268c789eda9b789849bf999d59f0a4f87aa3;hp=b4335fdf31fc93cc54d62179220352d5020c27b6;hb=0a575c95804da3cb740ebe2fbece862f19dce35a;hpb=4033d87fddff62cfd615899991955867659ade01 diff --git a/notmuch-completion.bash b/notmuch-completion.bash index b4335fdf..8665268c 100644 --- a/notmuch-completion.bash +++ b/notmuch-completion.bash @@ -43,21 +43,29 @@ _notmuch() { - current="$2" + local current previous commands help_options - commands="setup new search show reply tag dump restore help" + previous=${COMP_WORDS[COMP_CWORD-1]} + current="${COMP_WORDS[COMP_CWORD]}" + commands="setup new search show reply tag dump restore help" help_options="setup new search show reply tag dump restore search-terms" + search_options="--max-threads= --first= --sort=" 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 + case $COMP_CWORD in + 1) + COMPREPLY=( $(compgen -W "${commands}" -- ${current}) ) ;; + 2) + case $previous in + help) + COMPREPLY=( $(compgen -W "${help_options}" -- ${current}) ) ;; + search) + COMPREPLY=( $(compgen -W "${search_options}" -- ${current}) ) ;; + esac + ;; + esac } + complete -o default -o bashdefault -F _notmuch notmuch