From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9702 invoked by alias); 17 Jan 2014 17:53:48 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 32271 Received: (qmail 8108 invoked from network); 17 Jan 2014 17:53:43 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_00,DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED,T_DKIM_INVALID, T_TO_NO_BRKTS_FREEMAIL,UNPARSEABLE_RELAY autolearn=no version=3.3.2 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=hahler.de; h= x-mailer:message-id:date:date:subject:subject:from:from:received :received:received; s=postfix2; t=1389980754; bh=ckKnKoS3zj2uWHi Yi4DBj4Gt9TIpcY2zbwCa8eYVjNY=; b=MbboFjK03UXgQJEwlPwi6WzaZoqBlT6 cYkueKzsHCh0NhtYwhH11VBi9S/nysskhaR5k7c4+bEjbVaVD5WVcwpDTCW2OS9f /aWqJogbh1r0gy/Kv5gPyOosEhA+bPzljlbBLEO/SnrD9LEXXpn7aqbA5mtg+5HP iZpy11rxyRuI= X-Virus-Scanned: Debian amavisd-new at amavis.thequod.de From: dhahler+zsh-workers@gmail.com To: zsh-workers@zsh.org Subject: [PATCH] doc: fix example for '+' in matcher-list completion style Date: Fri, 17 Jan 2014 18:45:56 +0100 Message-Id: <1389980756-32433-1-git-send-email-dhahler+zsh-workers@gmail.com> X-Mailer: git-send-email 1.8.5.2 From: Daniel Hahler The example is missing the colons after `+m`. --- Doc/Zsh/compsys.yo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/Zsh/compsys.yo b/Doc/Zsh/compsys.yo index b9038cf..6f1917d 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 -- 1.8.5.2