about summary refs log tree commit diff
path: root/Doc
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-12-08 09:48:04 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-12-08 09:48:04 +0000
commit37b3d62f8e55b022b107ac0ef553e400202a6ee1 (patch)
tree7d2dff0a751c544165f5ebd7079bcb583dd5b16f /Doc
parentb8787e39cf78c9212a4816cbe978d77d3f63289f (diff)
downloadzsh-37b3d62f8e55b022b107ac0ef553e400202a6ee1.tar.gz
zsh-37b3d62f8e55b022b107ac0ef553e400202a6ee1.tar.xz
zsh-37b3d62f8e55b022b107ac0ef553e400202a6ee1.zip
zsh-workers/8939
Diffstat (limited to 'Doc')
-rw-r--r--Doc/Zsh/mod_complist.yo14
1 files changed, 13 insertions, 1 deletions
diff --git a/Doc/Zsh/mod_complist.yo b/Doc/Zsh/mod_complist.yo
index 53162d6b4..535da9267 100644
--- a/Doc/Zsh/mod_complist.yo
+++ b/Doc/Zsh/mod_complist.yo
@@ -149,11 +149,23 @@ After menu-selection is started, the matches will be listed. The
 matches to insert into the command line can be selected from this
 list. In the list one match is highlighted using the value for tt(ma)
 from the tt(ZLS_COLORS) or tt(ZLS_COLOURS) parameter. The default
-value for this it `tt(7)' which forces the selected match to be
+value for this is `tt(7)' which forces the selected match to be
 highlighted using standout mode on a vt100-compatible terminal. If
 neither tt(ZLS_COLORS) nor tt(ZLS_COLOURS) is set, the same terminal
 control sequence as for the `tt(%S)' escape in prompts is used.
 
+Normally, the completion code may decide to not show of the matches in 
+the list. These hidden matches are either matches for which the
+completion function which added them explicitly requested that they
+don't appear in the list (using the tt(-n) option of the tt(compadd)
+builtin command) or they are matches which show the the same string in 
+the list (because they differ only in things like prefixes or suffixes 
+that are never listed). In the list used for menu-selection, however,
+even these matches will be shown so that it is possible to select
+them. To be able to highlight such matches the tt(hi) and tt(mu)
+capabilities in the tt(ZLS_COLORS) and tt(ZLS_COLOURS) parameters are
+supported for hidden matches of the first and second kind, respectively.
+
 Selecting matches is done by moving the mark around using the zle movement
 functions. The zle functions tt(send-break) and tt(accept-line) can be used
 to leave menu-selection, leaving the match currently inserted into the line