From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9650 invoked from network); 30 Jun 2004 14:33:13 -0000 Received: from odin.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.85) by ns1.primenet.com.au with SMTP; 30 Jun 2004 14:33:13 -0000 Received: (qmail 10346 invoked from network); 30 Jun 2004 15:44:17 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 30 Jun 2004 15:44:17 -0000 Received: (qmail 15035 invoked by alias); 30 Jun 2004 14:32:28 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 7634 Received: (qmail 15025 invoked from network); 30 Jun 2004 14:32:28 -0000 Received: from odin.dotsrc.org (HELO a.mx.sunsite.dk) (qmailr@130.225.247.85) by sunsite.dk with SMTP; 30 Jun 2004 14:32:28 -0000 Received: (qmail 9371 invoked from network); 30 Jun 2004 15:43:47 -0000 Received: from mail36.messagelabs.com (193.109.254.211) by a.mx.sunsite.dk with SMTP; 30 Jun 2004 15:43:38 -0000 X-VirusChecked: Checked X-Env-Sender: okiddle@yahoo.co.uk X-Msg-Ref: server-11.tower-36.messagelabs.com!1088605911!7374630 X-StarScan-Version: 5.2.10; banners=-,-,- X-Originating-IP: [158.234.9.163] Received: (qmail 7451 invoked from network); 30 Jun 2004 14:31:51 -0000 Received: from iris.logica.co.uk (158.234.9.163) by server-11.tower-36.messagelabs.com with SMTP; 30 Jun 2004 14:31:51 -0000 Received: from trentino.logica.co.uk ([158.234.142.61]) by iris.logica.co.uk (8.12.3/8.12.3/Debian -4) with ESMTP id i5UEVpUI027052; Wed, 30 Jun 2004 15:31:51 +0100 Received: from trentino.logica.co.uk (localhost [127.0.0.1]) by trentino.logica.co.uk (Postfix) with ESMTP id B5232790E24E; Wed, 30 Jun 2004 16:31:06 +0200 (CEST) Cc: zsh-users@sunsite.dk X-VirusChecked: Checked X-StarScan-Version: 5.0.7; banners=.,-,- In-reply-to: <86eknxxitc.fsf@rumba.de.uu.net> From: Oliver Kiddle References: <86eknxxitc.fsf@rumba.de.uu.net> To: Kai Grossjohann Subject: Re: Case-insensitive completion isn't completely insensitive Date: Wed, 30 Jun 2004 16:31:06 +0200 Message-ID: <5500.1088605866@trentino.logica.co.uk> X-Spam-Checker-Version: SpamAssassin 2.63 on a.mx.sunsite.dk X-Spam-Level: X-Spam-Status: No, hits=0.0 required=6.0 tests=BAYES_50 autolearn=no version=2.63 X-Spam-Hits: 0.0 Kai Grossjohann wrote: > I have a directory which contains a file ENV and a subdir etc/. I > change into that directory, type "source ./e" and then hit TAB. Zsh > completes the directory, but not the file! > zstyle ':completion:*' matcher-list '' 'm:{a-z}={A-Z}' 'r:|[._-/]=** r:|=**' 'l:|=* r:|=*' ^^ That empty match specification there tells zsh to try case sensitive completion first. The definition after it specifies case-insensitive completion. Try removing those empty quotes. Oliver