]> git.notmuchmail.org Git - notmuch/blobdiff - completion/notmuch-completion.bash
cli: search: Add --output={sender,recipients}
[notmuch] / completion / notmuch-completion.bash
index d88c5e7d965e96b191040fd982b71d170a8b7f71..cfbd3890e09179ae8a1966c24c21dd46a114b31f 100644 (file)
@@ -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=()