diff options
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 |