diff options
author | Jani Nikula <jani@nikula.org> | 2014-02-02 14:49:09 +0200 |
---|---|---|
committer | David Bremner <david@tethera.net> | 2014-02-03 16:19:49 -0400 |
commit | b220aefdf9c46f4b472a0b06a18ae7341620dcc5 (patch) | |
tree | f1593e9784af5fb96c64cdc8ffbbe80a3858ea42 /completion | |
parent | aff5af582ecbacb4004ad306c6ef463d61f1ed3a (diff) |
completion: bash completion for notmuch new --quiet option
notmuch new now has --quiet option, complete it too.
Diffstat (limited to 'completion')
-rw-r--r-- | completion/notmuch-completion.bash | 2 |
1 files changed, 1 insertions, 1 deletions
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 |