diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2010-04-23 21:51:59 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2010-04-23 21:51:59 +0000 |
commit | 32251cbac450fcd2360eea908c2950900b3c48ac (patch) | |
tree | c70d05042bf8141ed5742186c51f80b8085f0cb0 /Completion/Unix | |
parent | 11440d17d1f49ab62f91d8ed34de5c1e9f79a95b (diff) | |
download | zsh-32251cbac450fcd2360eea908c2950900b3c48ac.tar.gz zsh-32251cbac450fcd2360eea908c2950900b3c48ac.tar.xz zsh-32251cbac450fcd2360eea908c2950900b3c48ac.zip |
users/15028 modified to unquote in one place:
with path-completion false or accept-exact-dirs true we need to unquote the string before sticking it in the current path
Diffstat (limited to 'Completion/Unix')
-rw-r--r-- | Completion/Unix/Type/_path_files | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Type/_path_files b/Completion/Unix/Type/_path_files index fa02656d0..9445ac77c 100644 --- a/Completion/Unix/Type/_path_files +++ b/Completion/Unix/Type/_path_files @@ -357,7 +357,7 @@ for prepath in "$prepaths[@]"; do cpre= if [[ ( -n $accept_exact_dirs || -z $path_completion ) && \ - $pre = (#b)(*)/([^/]#) ]]; then + ${(Q)pre} = (#b)(*)/([^/]#) ]]; then # We've been told either that we can accept an exact directory prefix # immediately, or that path expansion is inhibited. Try the longest # path prefix first: in the first case, this saves stats in the simple |