diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-10-11 12:19:23 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-10-11 12:19:23 +0000 |
commit | adf79659510ed08c78bb4ccb881a5c03ef2e6759 (patch) | |
tree | 8d2388a2435c7648b253a01d130be5ce1146419c /Completion/Commands | |
parent | 5d8adbee0753795e7903b40847e17c879766dbf7 (diff) | |
download | zsh-adf79659510ed08c78bb4ccb881a5c03ef2e6759.tar.gz zsh-adf79659510ed08c78bb4ccb881a5c03ef2e6759.tar.xz 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_word | 11 |
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 |