From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3862 invoked from network); 3 May 2009 16:56:57 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.5 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 3 May 2009 16:56:57 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 48137 invoked from network); 3 May 2009 16:56:48 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 3 May 2009 16:56:48 -0000 Received: (qmail 27895 invoked by alias); 3 May 2009 16:56:40 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 26919 Received: (qmail 27882 invoked from network); 3 May 2009 16:56:40 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 3 May 2009 16:56:40 -0000 Received: from QMTA06.westchester.pa.mail.comcast.net (qmta06.westchester.pa.mail.comcast.net [76.96.62.56]) by bifrost.dotsrc.org (Postfix) with ESMTP id 5A3E180590A3 for ; Sun, 3 May 2009 18:54:38 +0200 (CEST) Received: from OMTA01.westchester.pa.mail.comcast.net ([76.96.62.11]) by QMTA06.westchester.pa.mail.comcast.net with comcast id mzbj1b0020EZKEL564wTWS; Sun, 03 May 2009 16:56:27 +0000 Received: from smtp.klanderman.net ([98.217.254.247]) by OMTA01.westchester.pa.mail.comcast.net with comcast id n4wL1b00Q5M2Np63M4wM0G; Sun, 03 May 2009 16:56:21 +0000 Received: from lwm.klanderman.net (unknown [192.168.100.50]) by smtp.klanderman.net (Postfix) with ESMTP id EAF9BB30147 for ; Sun, 3 May 2009 12:56:33 -0400 (EDT) Received: by lwm.klanderman.net (Postfix, from userid 500) id CC3179FC5F9; Sun, 3 May 2009 12:56:33 -0400 (EDT) From: Greg Klanderman To: zsh-workers@sunsite.dk Subject: Re: another file completion problem in 4.3.9-dev-2 Reply-To: gak@klanderman.net Date: Sun, 03 May 2009 12:56:33 -0400 In-Reply-To: <090502075455.ZM29259@torch.brasslantern.com> (Bart Schaefer's message of "Sat, 02 May 2009 07:54:55 -0700") Message-ID: User-Agent: Gnus/5.1007 (Gnus v5.10.7) XEmacs/21.4.17 (linux) References: <18939.51080.161444.80368@gargle.gargle.HOWL> <090502075455.ZM29259@torch.brasslantern.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Scanned: ClamAV 0.92.1/9320/Sun May 3 08:19:28 2009 on bifrost X-Virus-Status: Clean >>>>> Bart Schaefer writes: > "baz" is a mismatch in at least two dimensions, both position in the > word (not a prefix) and case. I suspect the matcher list can adjust > for only one dimension at a time. I don't think that's true, it usually works for me, for example: [~] greg@lwm| zsh -f lwm% autoload -U compinit lwm% compinit -D -u lwm% zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}' '+ l:|=* r:|=*' lwm% mkdir temp lwm% cd temp lwm% touch FooBar FooBaz lwm% ls baz # ===> FooBaz > On the other hand, the following DOES seem to be a bug, so maybe it > is related somehow: Interesting... Thanks for taking a look, Bart! Any thoughts on the other one I sent a couple weeks back, which seemed to have something to do with quoting of space? cheers, greg