1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-04 20:40:57 +02:00

18143: fix doc typo in compsys example.

This commit is contained in:
Bart Schaefer 2003-01-27 16:42:27 +00:00
parent 1fb9c83eb6
commit eb3b206c20

View file

@ -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)