From 7eed3e6d5dd9d1c07be0f6069728e21381718599 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Sun, 18 May 2008 20:51:47 +0000 Subject: users/12858: add accept-exact-dirs style --- Completion/Unix/Type/_path_files | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'Completion/Unix/Type/_path_files') diff --git a/Completion/Unix/Type/_path_files b/Completion/Unix/Type/_path_files index e75e81efd..fc0789f01 100644 --- a/Completion/Unix/Type/_path_files +++ b/Completion/Unix/Type/_path_files @@ -318,6 +318,29 @@ for prepath in "$prepaths[@]"; do skipped= cpre= + + if zstyle -t ":completion:${curcontext}:paths" accept-exact-dirs && + [[ $pre = (#b)(*)/([^/]#) ]]; then + # We've been told that we can accept an exact directory + # prefix immediately. Try this with the longest path prefix + # first: this saves stats in the simple case and may get around + # automount behaviour if early components don't yet exist. + tmp1=$match[1] + tpre=$match[2] + while true; do + if [[ -d $donepath$tmp1 ]]; then + donepath=$donepath$tmp1/ + pre=$tpre + break + elif [[ $tmp1 = (#b)(*)/([^/]#) ]]; then + tmp1=$match[1] + tpre=$match[2]/$tpre + else + break + fi + done + fi + tpre="$pre" tsuf="$suf" testpath="$donepath" -- cgit 1.4.1