diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2003-01-27 16:42:27 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2003-01-27 16:42:27 +0000 |
commit | eb3b206c20f1194ea841006812e6ffad06eaeb85 (patch) | |
tree | 3cacde7a4bc7c78bc5276f15582b421563c2ff72 /Doc/Zsh | |
parent | 1fb9c83eb6cce967d9429aa1ee49d14c0f96d863 (diff) | |
download | zsh-eb3b206c20f1194ea841006812e6ffad06eaeb85.tar.gz zsh-eb3b206c20f1194ea841006812e6ffad06eaeb85.tar.xz zsh-eb3b206c20f1194ea841006812e6ffad06eaeb85.zip |
18143: fix doc typo in compsys example.
Diffstat (limited to 'Doc/Zsh')
-rw-r--r-- | Doc/Zsh/compsys.yo | 2 |
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) |