diff options
| author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-06-06 12:19:33 +0000 |
|---|---|---|
| committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-06-06 12:19:33 +0000 |
| commit | 24559bb1f681c6037cdc91ed4b1a0ffb70be173a (patch) | |
| tree | 50b7f29f57139c4275346c7547e96282c92da839 /Completion/Core | |
| parent | make (e) flag be silent unless (X) is given, too (11768) (diff) | |
| download | zsh-24559bb1f681c6037cdc91ed4b1a0ffb70be173a.tar zsh-24559bb1f681c6037cdc91ed4b1a0ffb70be173a.tar.gz zsh-24559bb1f681c6037cdc91ed4b1a0ffb70be173a.tar.bz2 zsh-24559bb1f681c6037cdc91ed4b1a0ffb70be173a.tar.lz zsh-24559bb1f681c6037cdc91ed4b1a0ffb70be173a.tar.xz zsh-24559bb1f681c6037cdc91ed4b1a0ffb70be173a.tar.zst zsh-24559bb1f681c6037cdc91ed4b1a0ffb70be173a.zip | |
fix for _path_files and globcomplete, better test if word contains wildcards (11776)
Diffstat (limited to 'Completion/Core')
| -rw-r--r-- | Completion/Core/_path_files | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Completion/Core/_path_files b/Completion/Core/_path_files index be7eaff85..32a92302e 100644 --- a/Completion/Core/_path_files +++ b/Completion/Core/_path_files @@ -184,7 +184,7 @@ eorig="$orig" [[ $compstate[insert] = (*menu|[0-9]*) || -n "$_comp_correct" || ( -n "$compstate[pattern_match]" && - "${orig#\~}" != "${${orig#\~}:q}" ) ]] && menu=yes + "${orig#\~}" != (|*[^\\])[][*?#~^\|\<\>]* ) ]] && menu=yes # Now let's have a closer look at the string to complete. @@ -491,7 +491,8 @@ for prepath in "$prepaths[@]"; do fi if (( tmp4 )) || - [[ -n "$compstate[pattern_match]" && "$tmp2" != "${(q)tmp2}" ]]; then + [[ -n "$compstate[pattern_match]" && + "$tmp2" = (|*[^\\])[][*?#~^\|\<\>]* ]]; then # It is. For menucompletion we now add the possible completions # for this component with the unambigous prefix we have built # and the rest of the string from the line as the suffix. |
