]> git.cworth.org Git - notmuch/commitdiff
completion: bash completion for notmuch new --quiet option
authorJani Nikula <jani@nikula.org>
Sun, 2 Feb 2014 12:49:09 +0000 (14:49 +0200)
committerDavid Bremner <david@tethera.net>
Mon, 3 Feb 2014 20:19:49 +0000 (16:19 -0400)
notmuch new now has --quiet option, complete it too.

completion/notmuch-completion.bash

index 04324bbb3968222d84af224089a69c59e08a407b..0f132043dea5e89219f6853714b63c74ac101476 100644 (file)
@@ -208,7 +208,7 @@ _notmuch_new()
 
     case "${cur}" in
        -*)
-           local options="--no-hooks"
+           local options="--no-hooks --quiet"
            COMPREPLY=( $(compgen -W "${options}" -- ${cur}) )
            ;;
     esac