]> git.cworth.org Git - notmuch/blobdiff - completion/notmuch-completion.bash
Merge tag '0.34.3'
[notmuch] / completion / notmuch-completion.bash
index 249b9664259cf3206a0b1d1f16f2abfae5e17c5b..0022b54bff5df41765aecdd640484a6dd53b5e5f 100644 (file)
@@ -103,12 +103,12 @@ _notmuch_search_terms()
            COMPREPLY=( $(compgen -P "from:" -W "`_notmuch_email ${cur}`" -- ${cur##from:}) )
            ;;
        path:*)
-           local path=`notmuch config get database.path`
+           local path=`notmuch config get database.mail_root`
            compopt -o nospace
            COMPREPLY=( $(compgen -d "$path/${cur##path:}" | sed "s|^$path/||" ) )
            ;;
        folder:*)
-           local path=`notmuch config get database.path`
+           local path=`notmuch config get database.mail_root`
            compopt -o nospace
            COMPREPLY=( $(compgen -d "$path/${cur##folder:}" | \
                sed "s|^$path/||" | grep -v "\(^\|/\)\(cur\|new\|tmp\)$" ) )
@@ -281,7 +281,7 @@ _notmuch_insert()
     $split &&
     case "${prev}" in
        --folder)
-           local path=`notmuch config get database.path`
+           local path=`notmuch config get database.mail_root`
            compopt -o nospace
            COMPREPLY=( $(compgen -d "$path/${cur}" | \
                sed "s|^$path/||" | grep -v "\(^\|/\)\(cur\|new\|tmp\)$" ) )
@@ -522,7 +522,7 @@ _notmuch_show()
            return
            ;;
         --decrypt)
-           COMPREPLY=( $( compgen -W "true auto false" -- "${cur}" ) )
+           COMPREPLY=( $( compgen -W "true auto false stash" -- "${cur}" ) )
            return
            ;;
     esac