diff options
author | Daniel Shahaf <d.s@daniel.shahaf.name> | 2016-11-23 07:39:16 +0000 |
---|---|---|
committer | Daniel Shahaf <d.s@daniel.shahaf.name> | 2016-11-27 15:12:00 +0000 |
commit | eccb7471b577d55f0b410088fc1125016476b332 (patch) | |
tree | d7b51d38c13ac1436fb0edf723cb3391e489df27 /Completion/Unix | |
parent | 53e6b12bdfdc6b835192458bbb98b81b77599e75 (diff) | |
download | zsh-eccb7471b577d55f0b410088fc1125016476b332.tar.gz zsh-eccb7471b577d55f0b410088fc1125016476b332.tar.xz zsh-eccb7471b577d55f0b410088fc1125016476b332.zip |
39757 plus test: Fix completion under parenthetical directory names, broken in 39412
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 0d36b5487..32942d7a7 100644 --- a/Completion/Unix/Type/_path_files +++ b/Completion/Unix/Type/_path_files @@ -594,7 +594,7 @@ for prepath in "$prepaths[@]"; do # There are more components, so skip over the next components and make a # slash be added. - tmp1=( ${tmp1//(#b)([][()|*?^#~<>\\=])/\\${match[1]}} ) + #tmp1=( ${tmp1//(#b)([][()|*?^#~<>\\=])/\\${match[1]}} ) tmp2="${(M)tpre##${~skips}}" if [[ -n "$tmp2" ]]; then skipped="/$tmp2" |