From d4f7d8d32c5b8cdbe98a3ed83f38b62399972390 Mon Sep 17 00:00:00 2001 From: Bart Schaefer Date: Wed, 11 Apr 2001 22:26:11 +0000 Subject: Don't append a / when completing after [-+]*. --- Completion/Zsh/Type/_directory_stack | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'Completion') diff --git a/Completion/Zsh/Type/_directory_stack b/Completion/Zsh/Type/_directory_stack index f79aa947f..3e615dee4 100644 --- a/Completion/Zsh/Type/_directory_stack +++ b/Completion/Zsh/Type/_directory_stack @@ -13,14 +13,15 @@ if [[ "$SUFFIX" = */* ]]; then ISUFFIX="/${SUFFIX#*/}$ISUFFIX" SUFFIX="${SUFFIX%%/*}" suf=(-S '') -else +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 -- cgit 1.4.1