diff options
author | Barton E. Schaefer <schaefer@zsh.org> | 2014-03-03 23:52:20 -0800 |
---|---|---|
committer | Barton E. Schaefer <schaefer@zsh.org> | 2014-03-03 23:52:20 -0800 |
commit | ff6d8115efaa8d50ec107508c8678ec49d300ed6 (patch) | |
tree | f05ff427c1665d115c903f2f203359f9f730f4c7 /Doc/Zsh/compsys.yo | |
parent | e6d99759e8aff6f17ff08d977c7e7471ac0ebec5 (diff) | |
parent | 3c25cb29aba4d4c1a907aa29db48c36d8dbac18e (diff) | |
download | zsh-ff6d8115efaa8d50ec107508c8678ec49d300ed6.tar.gz zsh-ff6d8115efaa8d50ec107508c8678ec49d300ed6.tar.xz zsh-ff6d8115efaa8d50ec107508c8678ec49d300ed6.zip |
Merge branch 'master' of git://git.code.sf.net/p/zsh/code
Diffstat (limited to 'Doc/Zsh/compsys.yo')
-rw-r--r-- | Doc/Zsh/compsys.yo | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Doc/Zsh/compsys.yo b/Doc/Zsh/compsys.yo index 7dacbcf7b..8a9f47db1 100644 --- a/Doc/Zsh/compsys.yo +++ b/Doc/Zsh/compsys.yo @@ -2442,6 +2442,15 @@ completing words for the dict command. It allows words from different dictionary databases to be added separately. The default for this style is `false'. ) +kindex(show-ambiguity, completion style) +item(tt(show-ambiguity))( +If the tt(zsh/complist) module is loaded, this style can be used to +highlight the first ambiguous character in completion lists. The +value is either a color indication such as those supported by the +tt(list-colors) style or, with a value of tt(true), a default of +underlining is selected. The highlighting is only applied if the +completion display strings correspond to the actual matches. +) kindex(show-completer, completion style) item(tt(show-completer))( Tested whenever a new completer is tried. If it is true, the completion @@ -3040,6 +3049,15 @@ This function is also a bindable command, see ifzman(the section `Bindable Commands' below)\ ifnzman(noderef(Bindable Commands)). ) +findex(_extensions) +item(tt(_extensions))( +If the cursor follows the string `tt(*.)', filename extensions are +completed. The extensions are taken from files in current directory or a +directory specified at the beginning of the current word. For exact matches, +completion continues to allow other completers such as tt(_expand) to +expand the pattern. The standard tt(add-space) and tt(prefix-hidden) +styles are observed. +) findex(_history) item(tt(_history))( Complete words from the shell's command history. This completer |