diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-06-19 09:55:31 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-06-19 09:55:31 +0000 |
commit | a295e82c1e3c6d10cd873d0fcd31ed45d77e4ca3 (patch) | |
tree | eb354def4bb31fa8dc1fd6a2b8a178d1f1936f7c /Doc/Zsh/compsys.yo | |
parent | 2769b198812abf82cc3b074852714959213f266a (diff) | |
download | zsh-a295e82c1e3c6d10cd873d0fcd31ed45d77e4ca3.tar.gz zsh-a295e82c1e3c6d10cd873d0fcd31ed45d77e4ca3.tar.xz zsh-a295e82c1e3c6d10cd873d0fcd31ed45d77e4ca3.zip |
allow _expand to expand braces; better detection of braces to complete in C (11973)
Diffstat (limited to 'Doc/Zsh/compsys.yo')
-rw-r--r-- | Doc/Zsh/compsys.yo | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/Doc/Zsh/compsys.yo b/Doc/Zsh/compsys.yo index 2afd505fc..71ceb9ab0 100644 --- a/Doc/Zsh/compsys.yo +++ b/Doc/Zsh/compsys.yo @@ -1207,12 +1207,15 @@ This style is tested for the tags used when generating matches. If it is set to `true', then none of the words that are already on the line will be considered possible completions. If it is set to `tt(current)', the word the cursor is on will not be considered a -possible completion and if it is set to `tt(other)' all words except -the current one will not be considered to be a possible completion. - -The value `tt(current)' is a bit like the opposite of the -tt(accept-exact). It means that only strings with missing characters -will be completed. +possible completion. The same happens if the value is +`tt(current-shown)', but only if the list of completions is currently +shown on the screen. Finally, if it is set to `tt(other)' all words +except the current one will not be considered to be a possible +completion. + +The values `tt(current)' and `tt(current-shown)' are a bit like the +opposite of the tt(accept-exact). It means that only strings with +missing characters will be completed. Note that you almost certainly don't want to set this to `true' or `tt(other)' for a general |