completion: add proper completion of folder: and path:

Complete folder: to maildir folders and path: to directories in mail
store.
This commit is contained in:
Jani Nikula 2014-03-12 22:33:48 +02:00 committed by David Bremner
parent 92c3fd938e
commit d5822224da

View file

@ -49,8 +49,19 @@ _notmuch_search_terms()
from:*) from:*)
COMPREPLY=( $(compgen -P "from:" -W "`_notmuch_user_emails`" -- ${cur##from:}) ) COMPREPLY=( $(compgen -P "from:" -W "`_notmuch_user_emails`" -- ${cur##from:}) )
;; ;;
path:*)
local path=`notmuch config get database.path`
compopt -o nospace
COMPREPLY=( $(compgen -d "$path/${cur##path:}" | sed "s|^$path/||" ) )
;;
folder:*)
local path=`notmuch config get database.path`
compopt -o nospace
COMPREPLY=( $(compgen -d "$path/${cur##folder:}" | \
sed "s|^$path/||" | grep -v "\(^\|/\)\(cur\|new\|tmp\)$" ) )
;;
*) *)
local search_terms="from: to: subject: attachment: tag: id: thread: folder: date:" local search_terms="from: to: subject: attachment: tag: id: thread: folder: path: date:"
compopt -o nospace compopt -o nospace
COMPREPLY=( $(compgen -W "${search_terms}" -- ${cur}) ) COMPREPLY=( $(compgen -W "${search_terms}" -- ${cur}) )
;; ;;