about summary refs log tree commit diff
path: root/Completion/Zsh
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-17 09:12:26 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-17 09:12:26 +0000
commit6618fa77c819df7a851eac9781151ef05c84c9d3 (patch)
tree8e7139b338b9a970db198676c12f6cd5ce7b51bf /Completion/Zsh
parent7286f7bc374b5016238581fd50ce3383a4aab8c8 (diff)
downloadzsh-6618fa77c819df7a851eac9781151ef05c84c9d3.tar.gz
zsh-6618fa77c819df7a851eac9781151ef05c84c9d3.tar.xz
zsh-6618fa77c819df7a851eac9781151ef05c84c9d3.zip
remove SUFFIX-handling, it's in _tilde and only needed there (13997)
Diffstat (limited to 'Completion/Zsh')
-rw-r--r--Completion/Zsh/Type/_directory_stack12
1 files changed, 2 insertions, 10 deletions
diff --git a/Completion/Zsh/Type/_directory_stack b/Completion/Zsh/Type/_directory_stack
index c8e3cad26..ac9aa9cb4 100644
--- a/Completion/Zsh/Type/_directory_stack
+++ b/Completion/Zsh/Type/_directory_stack
@@ -7,15 +7,7 @@
 
 setopt localoptions nonomatch
 
-local expl list lines revlines disp suf
-
-if [[ "$SUFFIX" = */* ]]; then
-  ISUFFIX="/${SUFFIX#*/}$ISUFFIX"
-  SUFFIX="${SUFFIX%%/*}"
-  suf=(-S '')
-else
-  suf=()
-fi
+local expl list lines revlines disp
 
 ### we decided against this, for now...
 #! zstyle -T ":completion:${curcontext}:directory-stack" prefix-needed ||
@@ -48,4 +40,4 @@ else
 fi
 
 _wanted -V directory-stack expl 'directory stack' \
-    compadd "$@" "$suf[@]" "$disp[@]" -Q -a list
+    compadd "$@" "$disp[@]" -Q -a list