summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2006-09-20 14:09:56 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2006-09-20 14:09:56 +0000
commit286ca1d4875af0ee5b954ab0c00e1aee64226e08 (patch)
treeaa023fae5763e02b7ec552097a4e92134c55b304
parent753159200c6da7cbfdbc017bdcdb16ce42114755 (diff)
downloadzsh-286ca1d4875af0ee5b954ab0c00e1aee64226e08.tar.gz
zsh-286ca1d4875af0ee5b954ab0c00e1aee64226e08.zip
users/10748: improve a couple of minor things in compsys doc
-rw-r--r--ChangeLog3
-rw-r--r--Doc/Zsh/compsys.yo22
2 files changed, 12 insertions, 13 deletions
diff --git a/ChangeLog b/ChangeLog
index c3389577a..fb32b2df1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2006-09-20 Peter Stephenson <pws@csr.com>
+ * users/10748: Doc/Zsh/compsys.yo: improve example, make one
+ feature clearer.
+
* unposted: Completion/Unix/Command/_perforce: add some
handling for unsupported commands; add p4d completion.
diff --git a/Doc/Zsh/compsys.yo b/Doc/Zsh/compsys.yo
index 19f5b3356..7591ac5ce 100644
--- a/Doc/Zsh/compsys.yo
+++ b/Doc/Zsh/compsys.yo
@@ -589,19 +589,15 @@ appear as the argument to a style; this requires some understanding of
the internals of completion functions (see
ifzman(see zmanref(zshcompwid))\
ifnzman(noderef(Completion Widgets)))\
-). For example:
+). For example,
-example(zstyle -e ':completion:*' completer '
- if [[ $words[1] = cvs ]]; then
- reply=(_complete)
- else
- reply=(_complete _approximate)
- fi')
+example(tt(ztyle -e ':completion:*' hosts 'reply=($myhosts)'))
-uses the value `tt(_complete)' for the tt(completer) style in most
-contexts, but the value `tt(_complete _approximate)' when the first word
-on the command line is `tt(cvs)'. This is probably more conveniently done
-by specifying the style for two different contexts. This form can be
+This forces the value of the tt(hosts) style to be read from the
+variable tt(myhosts) each time a host name is needed; this is useful
+if the value of tt(myhosts) can change dynamically.
+For another useful example, see the example in the description of the
+tt(file-list) style below. This form can be
slow and should be avoided for commonly examined styles such
as tt(menu) and tt(list-rows-first).
@@ -3313,8 +3309,8 @@ This describes multiple arguments. Only the last var(optarg) for
an option taking multiple arguments may be
given in this form. If the var(pattern) is empty (i.e., tt(:*:)), all
the remaining words on the line are to be completed as described by the
-var(action); otherwise, all the words up to a word matching the
-var(pattern) are to be completed using the var(action).
+var(action); otherwise, all the words up to and including a word matching
+the var(pattern) are to be completed using the var(action).
Multiple colons are treated as for the `tt(*:)var(...)' forms for
ordinary arguments: when the var(message) is preceded by two colons,