From: Jani Nikula Date: Sun, 2 Feb 2014 12:49:09 +0000 (+0200) Subject: completion: bash completion for notmuch new --quiet option X-Git-Tag: 0.18_rc0~165 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=b220aefdf9c46f4b472a0b06a18ae7341620dcc5;hp=aff5af582ecbacb4004ad306c6ef463d61f1ed3a completion: bash completion for notmuch new --quiet option notmuch new now has --quiet option, complete it too. --- diff --git a/completion/notmuch-completion.bash b/completion/notmuch-completion.bash index 04324bbb..0f132043 100644 --- a/completion/notmuch-completion.bash +++ b/completion/notmuch-completion.bash @@ -208,7 +208,7 @@ _notmuch_new() case "${cur}" in -*) - local options="--no-hooks" + local options="--no-hooks --quiet" COMPREPLY=( $(compgen -W "${options}" -- ${cur}) ) ;; esac