diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-02-13 09:23:34 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-02-13 09:23:34 +0000 |
commit | 90b07817db10a67cc58d5bcad20ab6fc191146de (patch) | |
tree | af72046db0d909b3366707282686ab7037e6cb5e /Completion/Core | |
parent | 275f3c95d44e69abc858fc8fb4836f699c239574 (diff) | |
download | zsh-90b07817db10a67cc58d5bcad20ab6fc191146de.tar.gz zsh-90b07817db10a67cc58d5bcad20ab6fc191146de.tar.xz zsh-90b07817db10a67cc58d5bcad20ab6fc191146de.zip |
wehn using glob_complete, don't treat everything starting with a tilde as a pattern (13459)
Diffstat (limited to 'Completion/Core')
-rw-r--r-- | Completion/Core/_path_files | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Core/_path_files b/Completion/Core/_path_files index bce3144af..5aa85c706 100644 --- a/Completion/Core/_path_files +++ b/Completion/Core/_path_files @@ -622,7 +622,7 @@ for prepath in "$prepaths[@]"; do compquote tmp4 tmp1 fi if [[ -z "$_comp_correct" && -n "$compstate[pattern_match]" && - "$PREFIX$SUFFIX" = (|*[^\\])[][*?#~^\|\<\>]* ]]; then + "${PREFIX#\~}$SUFFIX" = (|*[^\\])[][*?#~^\|\<\>]* ]]; then compadd -Qf -W "$prepath$realpath" "$pfxsfx[@]" "$mopts[@]" \ -M "r:|/=* r:|=*" - "$linepath$tmp4${(@)^tmp1}" else |