completion: bash completion for notmuch new --quiet option

notmuch new now has --quiet option, complete it too.
This commit is contained in:
Jani Nikula 2014-02-02 14:49:09 +02:00 committed by David Bremner
parent aff5af582e
commit b220aefdf9

View 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