From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7223 invoked by alias); 22 May 2012 16:44:07 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 17106 Received: (qmail 7675 invoked from network); 22 May 2012 16:44:06 -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=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 Received-SPF: none (ns1.primenet.com.au: domain at klanderman.net does not designate permitted sender hosts) From: Greg Klanderman To: zsh-users@zsh.org Subject: Re: completion oddity Reply-To: gak@klanderman.net Date: Tue, 22 May 2012 12:35:41 -0400 In-Reply-To: <120521233507.ZM1136@torch.brasslantern.com> (Bart Schaefer's message of "Mon, 21 May 2012 23:35:07 -0700") Message-ID: User-Agent: Gnus/5.1008 (Gnus v5.10.8) XEmacs/21.4.17 (linux) References: <20120521214023.GB10763@lorien.comfychair.org> <120521194232.ZM990@torch.brasslantern.com> <20120522050158.GC26384@lorien.comfychair.org> <20120522051617.GD26384@lorien.comfychair.org> <120521233507.ZM1136@torch.brasslantern.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii >>>>> On May 22, 2012 Bart Schaefer wrote: > The matcher-list style is only used when it is not empty! > _description: [[ -n "$_matcher" ]] && opts=($opts -M "$_matcher") > So you can't use matcher-list to turn off matching, only to modify it. Hi Bart, Is there something I can put in matcher-list to effectively turn off this default and globally get the behavior as when you added "-M ''" below: _k () { _arguments -M '' --r1-word --really-r1-word } I tried these: % zstyle ':completion:*' matcher-list ' ' # space % zstyle ':completion:*' matcher-list 'm:{a-z}={a-z}' and neither seems to do the trick.. Greg