about summary refs log tree commit diff
path: root/Doc
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2007-06-16 17:53:55 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2007-06-16 17:53:55 +0000
commitd59d9da6aaa99ba785dd1159bd854c3cb9da37ec (patch)
tree95ace5d24a41b86ddf4b1c4bf0de75c17c43f866 /Doc
parent536a8cb6daf78850d0bc336b0edffe75ae00304f (diff)
downloadzsh-d59d9da6aaa99ba785dd1159bd854c3cb9da37ec.tar.gz
zsh-d59d9da6aaa99ba785dd1159bd854c3cb9da37ec.tar.xz
zsh-d59d9da6aaa99ba785dd1159bd854c3cb9da37ec.zip
users/11575: improved documentation for _all_matches
Diffstat (limited to 'Doc')
-rw-r--r--Doc/Zsh/compsys.yo11
1 files changed, 9 insertions, 2 deletions
diff --git a/Doc/Zsh/compsys.yo b/Doc/Zsh/compsys.yo
index 963e43c96..d5651157b 100644
--- a/Doc/Zsh/compsys.yo
+++ b/Doc/Zsh/compsys.yo
@@ -2726,9 +2726,16 @@ bindkey '^Xa' all-matches
 zstyle ':completion:all-matches:*' old-matches only
 zstyle ':completion:all-matches::::' completer _all_matches)
 
-Note that this does not generate completions by itself.  First use
+Note that this does not generate completions by itself:  first use
 any of the standard ways of generating a list of completions,
-then use tt(^Xa) to show all matches.
+then use tt(^Xa) to show all matches.  It is possible instead to
+add a standard completer to the list and request that the
+list of all matches should be directly inserted:
+
+example(zstyle ':completion:all-matches::::' completer _all_matches _complete
+zstyle ':completion:all-matches:*' insert true)
+
+In this case the tt(old-matches) style should not be set.
 )
 findex(_approximate)
 item(tt(_approximate))(