diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2001-04-12 11:42:01 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2001-04-12 11:42:01 +0000 |
commit | 621155b3ec40ba739e9280e58f07c54d5de23290 (patch) | |
tree | 036b0e5ae3b4fc715e0e84d4ce8e33e895e66899 /Completion | |
parent | f48fd1dd86ea6bddfb30bb5089694f26b0a2fb7f (diff) | |
download | zsh-621155b3ec40ba739e9280e58f07c54d5de23290.tar.gz zsh-621155b3ec40ba739e9280e58f07c54d5de23290.tar.xz zsh-621155b3ec40ba739e9280e58f07c54d5de23290.zip |
avoid appending a / when called from _cd (13958)
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Zsh/Type/_directory_stack | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Completion/Zsh/Type/_directory_stack b/Completion/Zsh/Type/_directory_stack index 3e615dee4..c8e3cad26 100644 --- a/Completion/Zsh/Type/_directory_stack +++ b/Completion/Zsh/Type/_directory_stack @@ -13,15 +13,14 @@ if [[ "$SUFFIX" = */* ]]; then ISUFFIX="/${SUFFIX#*/}$ISUFFIX" SUFFIX="${SUFFIX%%/*}" suf=(-S '') -elif [[ $PREFIX != [-+]* ]]; then - suf=(-qS/) else suf=() fi ### we decided against this, for now... #! zstyle -T ":completion:${curcontext}:directory-stack" prefix-needed || -# [[ $PREFIX = [-+]* ]] || return 1 + +[[ $PREFIX = [-+]* ]] || return 1 if zstyle -T ":completion:${curcontext}:directory-stack" verbose; then # get the list of directories with their canonical number |