[PATCH 2/2] completion: complete directory parameters to directories only
Jani Nikula
jani at nikula.org
Wed Mar 12 13:33:49 PDT 2014
i.e. don't complete to files if only directories are acceptable.
---
completion/notmuch-completion.bash | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/completion/notmuch-completion.bash b/completion/notmuch-completion.bash
index 59f1a3ea6431..d88c5e7d965e 100644
--- a/completion/notmuch-completion.bash
+++ b/completion/notmuch-completion.bash
@@ -78,7 +78,7 @@ _notmuch_compact()
$split &&
case "${prev}" in
--backup)
- _filedir
+ _filedir -d
return
;;
esac
@@ -107,7 +107,7 @@ _notmuch_config()
;;
# these will also complete on config get, but we don't care
database.path)
- _filedir
+ _filedir -d
;;
maildir.synchronize_flags)
COMPREPLY=( $(compgen -W "true false" -- ${cur}) )
--
1.9.0
More information about the notmuch
mailing list