diff options
| author | Tanaka Akira <akr@users.sourceforge.net> | 2000-03-24 11:58:53 +0000 |
|---|---|---|
| committer | Tanaka Akira <akr@users.sourceforge.net> | 2000-03-24 11:58:53 +0000 |
| commit | ad108b32774ef7860c280c4609aa178c15e6b759 (patch) | |
| tree | bb1a4d7761f6a7c4a42c34a50ba4c05a0dacc3f0 /Completion/Core | |
| parent | zsh-workers/10225 (diff) | |
| download | zsh-ad108b32774ef7860c280c4609aa178c15e6b759.tar zsh-ad108b32774ef7860c280c4609aa178c15e6b759.tar.gz zsh-ad108b32774ef7860c280c4609aa178c15e6b759.tar.bz2 zsh-ad108b32774ef7860c280c4609aa178c15e6b759.tar.lz zsh-ad108b32774ef7860c280c4609aa178c15e6b759.tar.xz zsh-ad108b32774ef7860c280c4609aa178c15e6b759.tar.zst zsh-ad108b32774ef7860c280c4609aa178c15e6b759.zip | |
zsh-workers/10226
Diffstat (limited to 'Completion/Core')
| -rw-r--r-- | Completion/Core/_path_files | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Core/_path_files b/Completion/Core/_path_files index 9f197f324..d5feaa540 100644 --- a/Completion/Core/_path_files +++ b/Completion/Core/_path_files @@ -417,9 +417,9 @@ for prepath in "$prepaths[@]"; do # Next we see if this component is ambiguous. if [[ "$tmp3" = */* ]]; then - tmp4=$tmp1[(I)^${tmp1[1]%%/*}/*] + tmp4=$tmp1[(I)^${(q)tmp1[1]%%/*}/*] else - tmp4=$tmp1[(I)^${tmp1[1]}] + tmp4=$tmp1[(I)^${(q)tmp1[1]}] fi if [[ "$tpre" = */* ]]; then |
