From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22803 invoked from network); 14 Sep 2005 12:56:06 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 14 Sep 2005 12:56:06 -0000 Received: (qmail 16624 invoked from network); 14 Sep 2005 12:55:57 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 14 Sep 2005 12:55:57 -0000 Received: (qmail 22642 invoked by alias); 14 Sep 2005 12:55:50 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 9413 Received: (qmail 22216 invoked from network); 14 Sep 2005 12:49:08 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 14 Sep 2005 12:49:08 -0000 Received: (qmail 12913 invoked from network); 14 Sep 2005 12:49:08 -0000 Received: from xproxy.gmail.com (66.249.82.198) by a.mx.sunsite.dk with SMTP; 14 Sep 2005 12:48:58 -0000 Received: by xproxy.gmail.com with SMTP id h26so164758wxd for ; Wed, 14 Sep 2005 05:48:57 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=N48YH052ITJPBFG6NyZyV5v0MPVDAjjFXmRRUZdyOAFndG3pY6ci2rF2V+f7wTysVXGzah4krfqJeKgwsJkf2FbOahsBcnuW4N9Uc2m7MbKRrHZ1sc6O2jPYeWvwoFCd8Z55bHSRcfheA+cbOGey6XeXHdQyvOqv5kpRysx9QRc= Received: by 10.70.15.6 with SMTP id 6mr201355wxo; Wed, 14 Sep 2005 05:48:56 -0700 (PDT) Received: by 10.70.44.11 with HTTP; Wed, 14 Sep 2005 05:48:56 -0700 (PDT) Message-ID: <20a807210509140548ba761f1@mail.gmail.com> Date: Wed, 14 Sep 2005 08:48:56 -0400 From: Vin Shelton Reply-To: acs@alumni.princeton.edu To: zzapper Subject: Re: ls case insensitivity Cc: zsh-users@sunsite.dk In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.5 required=5.0 tests=BAYES_00,RCVD_BY_IP autolearn=ham version=3.0.4 On 9/14/05, zzapper wrote: > But is there an option to switch off case-sensitivity? >=20 Does this do what you want? # Match case-insensitively zstyle ':completion:*' matcher-list 'm:{a-z}=3D{A-Z}' HTH, Vin