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 /Doc/Zsh/compwid.yo | |
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 'Doc/Zsh/compwid.yo')
-rw-r--r-- | Doc/Zsh/compwid.yo | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Doc/Zsh/compwid.yo b/Doc/Zsh/compwid.yo index 5747e3d22..e793085af 100644 --- a/Doc/Zsh/compwid.yo +++ b/Doc/Zsh/compwid.yo @@ -418,7 +418,7 @@ sect(Builtin Commands) startitem() findex(compadd) cindex(completion widgets, adding specified matches) -xitem(tt(compadd) [ tt(-akqQfenUl12) ] [ tt(-F) var(array) ]) +xitem(tt(compadd) [ tt(-akqQfenUl12C) ] [ tt(-F) var(array) ]) xitem([ tt(-P) var(prefix) ] [ tt(-S) var(suffix) ]) xitem([ tt(-p) var(hidden-prefix) ] [ tt(-s) var(hidden-suffix) ]) xitem([ tt(-i) var(ignored-prefix) ] [ tt(-I) var(ignored-suffix) ]) @@ -640,6 +640,15 @@ in turn matches what is on the line. If the var(n)'th var(word) does not match, the var(n)'th element of the var(array) is removed. Elements for which the corresponding var(word) is matched are retained. ) +item(tt(-C))( +This option adds a special match which expands to all other metches +when inserted into the line, even those that are added after this +option is used. Together with the tt(-d) option it is possible to +specify a string that should be displayed in the list for this special +match. If no string is given, it will be shown as a string containing +the strings that would be inserted for the other matches, truncated to +the width of the screen. +) xitem(tt(-)) item(tt(-)tt(-))( This flag ends the list of flags and options. All arguments after it |