diff options
author | Daniel Hahler <git@thequod.de> | 2014-01-17 18:45:56 +0100 |
---|---|---|
committer | Peter Stephenson <p.w.stephenson@ntlworld.com> | 2014-01-17 18:43:48 +0000 |
commit | 790664ac9007f461015d20dfa7b7122c3c737259 (patch) | |
tree | b91e9b5ed3f18f79f25be9e55c665c4af3966e64 | |
parent | 3e199e5e1739e35f74f004a9e67f4ae7c239261a (diff) | |
download | zsh-790664ac9007f461015d20dfa7b7122c3c737259.tar.gz zsh-790664ac9007f461015d20dfa7b7122c3c737259.tar.xz zsh-790664ac9007f461015d20dfa7b7122c3c737259.zip |
32271: fix matcher-list example
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Doc/Zsh/compsys.yo | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 5cda8e58a..3c4377b8a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-01-17 Peter Stephenson <p.w.stephenson@ntlworld.com> + + * Daniel Hahler: 32271: Doc/Zsh/compsys.yo: fix matcher list + example. + 2014-01-17 Peter Stephenson <p.stephenson@samsung.com> * sergio: 32267: Completion/Linux/Command/_modutils: modinfo may diff --git a/Doc/Zsh/compsys.yo b/Doc/Zsh/compsys.yo index b9038cfa5..6f1917d36 100644 --- a/Doc/Zsh/compsys.yo +++ b/Doc/Zsh/compsys.yo @@ -2019,7 +2019,7 @@ specification is prefixed with tt(+), it is added to the existing list. Hence it is possible to create increasingly general specifications without repetition: -example(zstyle ':completion:*' matcher-list '' '+m{a-z}={A-Z}' '+m{A-Z}={a-z}') +example(zstyle ':completion:*' matcher-list '' '+m:{a-z}={A-Z}' '+m:{A-Z}={a-z}') It is possible to create match specifications valid for particular completers by using the third field of the context. For example, to |