]> git.cworth.org Git - notmuch/blobdiff - completion/notmuch-completion.bash
cli/reindex: add --try-decrypt=(true|false)
[notmuch] / completion / notmuch-completion.bash
index 72a75a94abf96cb4bd77a67674123a8aa61016ef..7aae4297ae0e1fecdbff7f97c857fff3529efcac 100644 (file)
@@ -435,10 +435,18 @@ _notmuch_reindex()
     local cur prev words cword split
     _init_completion -s || return
 
+    $split &&
+    case "${prev}" in
+       --try-decrypt)
+           COMPREPLY=( $( compgen -W "true false" -- "${cur}" ) )
+           return
+           ;;
+    esac
+
     ! $split &&
     case "${cur}" in
        -*)
-           local options="${_notmuch_shared_options}"
+           local options="--try-decrypt= ${_notmuch_shared_options}"
            compopt -o nospace
            COMPREPLY=( $(compgen -W "$options" -- ${cur}) )
            ;;