X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=completion%2Fnotmuch-completion.bash;h=cfbd3890e09179ae8a1966c24c21dd46a114b31f;hb=207f3bf82102f01fbbda193018e81a82f6c1259d;hp=d88c5e7d965e96b191040fd982b71d170a8b7f71;hpb=b6238f7e510b26e49d7ba91c687ca22e2f07882d;p=notmuch diff --git a/completion/notmuch-completion.bash b/completion/notmuch-completion.bash index d88c5e7d..cfbd3890 100644 --- a/completion/notmuch-completion.bash +++ b/completion/notmuch-completion.bash @@ -294,7 +294,7 @@ _notmuch_search() return ;; --output) - COMPREPLY=( $( compgen -W "summary threads messages files tags" -- "${cur}" ) ) + COMPREPLY=( $( compgen -W "summary threads messages files tags sender recipients" -- "${cur}" ) ) return ;; --sort) @@ -395,6 +395,10 @@ _notmuch() { local _notmuch_commands="compact config count dump help insert new reply restore search setup show tag" local arg cur prev words cword split + + # require bash-completion with _init_completion + type -t _init_completion >/dev/null 2>&1 || return + _init_completion || return COMPREPLY=()