diff options
author | Clint Adams <clint@users.sourceforge.net> | 2009-08-05 00:28:34 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2009-08-05 00:28:34 +0000 |
commit | 805a11bddf4298b31c6bb2d70e4ea33674a6be16 (patch) | |
tree | 8f37492508b1ffbf4f57386e6ff48596b22fa2e8 /Completion/Unix | |
parent | ab4cfaeddac904e14712ce72f4b929b867c9d411 (diff) | |
download | zsh-805a11bddf4298b31c6bb2d70e4ea33674a6be16.tar.gz zsh-805a11bddf4298b31c6bb2d70e4ea33674a6be16.tar.xz zsh-805a11bddf4298b31c6bb2d70e4ea33674a6be16.zip |
27208: try to do the right thing when applying file-sort to extant glob qualifiers.
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 63713eff7..ab6684da8 100644 --- a/Completion/Unix/Type/_path_files +++ b/Completion/Unix/Type/_path_files @@ -160,7 +160,7 @@ if zstyle -s ":completion:${curcontext}:" file-sort tmp1; then if _have_glob_qual "$tmp1" complete; then # unbalanced parenthesis is correct: match[1] contains the start, # match[5] doesn't contain the end. - tmp2+=( "${match[1]}${sort}${match[5]})" ) + tmp2+=( "${match[1]}${match[5]})(${sort})" ) else tmp2+=( "${tmp1}(${sort})" ) fi |