diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-06-28 07:47:39 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-06-28 07:47:39 +0000 |
commit | 3eaedd99a00fcc6041c34c8de2ecb966eeefd265 (patch) | |
tree | a858c110a5115d9a804d8c93532d5d4dcdf4a80d /Completion/Zsh/Context | |
parent | 9282cbc1a73d11fd6a5dd0c1d786f53298b24b36 (diff) | |
download | zsh-3eaedd99a00fcc6041c34c8de2ecb966eeefd265.tar.gz zsh-3eaedd99a00fcc6041c34c8de2ecb966eeefd265.tar.xz zsh-3eaedd99a00fcc6041c34c8de2ecb966eeefd265.zip |
Improve completion for `cd' with cdablevars set; cleanup in _cd and _tilde (15152)
Diffstat (limited to 'Completion/Zsh/Context')
-rw-r--r-- | Completion/Zsh/Context/_tilde | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Zsh/Context/_tilde b/Completion/Zsh/Context/_tilde index 7d7bf5aea..7f1b6b36a 100644 --- a/Completion/Zsh/Context/_tilde +++ b/Completion/Zsh/Context/_tilde @@ -6,7 +6,7 @@ [[ -n "$compstate[quote]" ]] && return 1 -local expl suf dirs list lines revlines i ret disp nm="$compstate[nmatches]" +local expl suf ret if [[ "$SUFFIX" = */* ]]; then ISUFFIX="/${SUFFIX#*/}$ISUFFIX" |