summaryrefslogtreecommitdiffstats
path: root/Completion/Commands
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2000-10-11 12:19:23 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2000-10-11 12:19:23 +0000
commitadf79659510ed08c78bb4ccb881a5c03ef2e6759 (patch)
tree8d2388a2435c7648b253a01d130be5ce1146419c /Completion/Commands
parentmake user defined completion widgets leave menu selection without accepting t... (diff)
downloadzsh-adf79659510ed08c78bb4ccb881a5c03ef2e6759.tar
zsh-adf79659510ed08c78bb4ccb881a5c03ef2e6759.tar.gz
zsh-adf79659510ed08c78bb4ccb881a5c03ef2e6759.tar.bz2
zsh-adf79659510ed08c78bb4ccb881a5c03ef2e6759.tar.lz
zsh-adf79659510ed08c78bb4ccb881a5c03ef2e6759.tar.xz
zsh-adf79659510ed08c78bb4ccb881a5c03ef2e6759.tar.zst
zsh-adf79659510ed08c78bb4ccb881a5c03ef2e6759.zip
add _all_matcher completer and supporting C-code for adding a special match representing all other matches; remove completions style from _expand(|_word) (12960)
Diffstat (limited to 'Completion/Commands')
-rw-r--r--Completion/Commands/_expand_word11
1 files changed, 1 insertions, 10 deletions
diff --git a/Completion/Commands/_expand_word b/Completion/Commands/_expand_word
index 3ec3cc756..895695676 100644
--- a/Completion/Commands/_expand_word
+++ b/Completion/Commands/_expand_word
@@ -6,7 +6,6 @@ setopt localoptions nullglob rcexpandparam extendedglob unset
unsetopt markdirs globsubst shwordsplit shglob ksharrays cshnullglob
local curcontext="$curcontext"
-local -ah completers
if [[ -z "$curcontext" ]]; then
curcontext="expand-word:::"
@@ -14,12 +13,4 @@ else
curcontext="expand-word:${curcontext#*:}"
fi
-if zstyle -t ":completion:${curcontext}:" completions; then
- zstyle -a ":completion:${curcontext}:" completer completers
- completers[1,(i)_expand]=_expand
- (( $#completers == 1 )) && completers=(_expand _complete)
-else
- completers=(_expand)
-fi
-
-_main_complete $completers
+_main_complete _expand