about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBart Schaefer <barts@users.sourceforge.net>2003-01-27 16:42:27 +0000
committerBart Schaefer <barts@users.sourceforge.net>2003-01-27 16:42:27 +0000
commiteb3b206c20f1194ea841006812e6ffad06eaeb85 (patch)
tree3cacde7a4bc7c78bc5276f15582b421563c2ff72
parent1fb9c83eb6cce967d9429aa1ee49d14c0f96d863 (diff)
downloadzsh-eb3b206c20f1194ea841006812e6ffad06eaeb85.tar.gz
zsh-eb3b206c20f1194ea841006812e6ffad06eaeb85.tar.xz
zsh-eb3b206c20f1194ea841006812e6ffad06eaeb85.zip
18143: fix doc typo in compsys example.
-rw-r--r--Doc/Zsh/compsys.yo2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/Zsh/compsys.yo b/Doc/Zsh/compsys.yo
index 428b6a839..e589533cf 100644
--- a/Doc/Zsh/compsys.yo
+++ b/Doc/Zsh/compsys.yo
@@ -2488,7 +2488,7 @@ tt(completer) style using the tt(-e) option to zstyle so that some
 completers are only used when completion is attempted a second time on 
 the same string, e.g.:
 
-example(zstyle ':completion:*' completer '
+example(zstyle -e ':completion:*' completer '
   if [[ $_last_try != "$HISTNO$BUFFER$CURSOR" ]]; then
     _last_try="$HISTNO$BUFFER$CURSOR"
     reply=(_complete _match _prefix)