]> git.notmuchmail.org Git - notmuch/blobdiff - completion/notmuch-completion.bash
cli/insert: add --try-decrypt=(true|false)
[notmuch] / completion / notmuch-completion.bash
index 17be6b8f643d0fa05c129588b6e33617f1c8fa12..72a75a94abf96cb4bd77a67674123a8aa61016ef 100644 (file)
@@ -287,12 +287,16 @@ _notmuch_insert()
                sed "s|^$path/||" | grep -v "\(^\|/\)\(cur\|new\|tmp\)$" ) )
            return
            ;;
+       --try-decrypt)
+           COMPREPLY=( $( compgen -W "true false" -- "${cur}" ) )
+           return
+           ;;
     esac
 
     ! $split &&
     case "${cur}" in
        --*)
-           local options="--create-folder --folder= --keep --no-hooks ${_notmuch_shared_options}"
+           local options="--create-folder --folder= --keep --no-hooks --try-decrypt= ${_notmuch_shared_options}"
            compopt -o nospace
            COMPREPLY=( $(compgen -W "$options" -- ${cur}) )
            return