completion: use mail_root for path completion in bash/zsh

Since mail store and database directory can be different,
path and folder completions must use the directory given by
database.mail_root, not by database.path.
This commit is contained in:
Cédric Hannotier 2021-12-16 18:40:53 +01:00 committed by David Bremner
parent f9ffc5f433
commit d99b0d4dc8
2 changed files with 7 additions and 7 deletions

View 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\)$" ) )

View file

@ -69,8 +69,8 @@ _notmuch_term_mimetype() {
_notmuch_term_path() {
local ret=1 expl
local maildir="$(notmuch config get database.path)"
[[ -d $maildir ]] || { _message -e "database.path not found" ; return $ret }
local maildir="$(notmuch config get database.mail_root)"
[[ -d $maildir ]] || { _message -e "database.mail_root not found" ; return $ret }
_description notmuch-folder expl 'maildir folder'
_files "$expl[@]" -W $maildir -/ && ret=0
@ -79,8 +79,8 @@ _notmuch_term_path() {
_notmuch_term_folder() {
local ret=1 expl
local maildir="$(notmuch config get database.path)"
[[ -d $maildir ]] || { _message -e "database.path not found" ; return $ret }
local maildir="$(notmuch config get database.mail_root)"
[[ -d $maildir ]] || { _message -e "database.mail_root not found" ; return $ret }
_description notmuch-folder expl 'maildir folder'
local ignoredfolders=( '*/(cur|new|tmp)' )