From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10785 invoked from network); 15 Mar 2004 09:59:02 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 15 Mar 2004 09:59:02 -0000 Received: (qmail 15405 invoked by alias); 15 Mar 2004 09:58:41 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 7182 Received: (qmail 15388 invoked from network); 15 Mar 2004 09:58:40 -0000 Received: from localhost (HELO sunsite.dk) (127.0.0.1) by localhost with SMTP; 15 Mar 2004 09:58:40 -0000 X-MessageWall-Score: 0 (sunsite.dk) Received: from [193.109.254.211] by sunsite.dk (MessageWall 1.0.8) with SMTP; 15 Mar 2004 9:58:40 -0000 X-VirusChecked: Checked X-Env-Sender: okiddle@yahoo.co.uk X-Msg-Ref: server-15.tower-36.messagelabs.com!1079344719!4662184 X-StarScan-Version: 5.2.5; banners=-,-,- X-Originating-IP: [158.234.9.163] Received: (qmail 9818 invoked from network); 15 Mar 2004 09:58:39 -0000 Received: from iris.logica.co.uk (158.234.9.163) by server-15.tower-36.messagelabs.com with SMTP; 15 Mar 2004 09:58:39 -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 i2F9wdCk026338; Mon, 15 Mar 2004 09:58:39 GMT Received: from trentino.logica.co.uk (localhost [127.0.0.1]) by trentino.logica.co.uk (Postfix) with ESMTP id 20CEA79721C1; Mon, 15 Mar 2004 10:57:55 +0100 (CET) X-VirusChecked: Checked X-StarScan-Version: 5.0.7; banners=.,-,- In-reply-to: <87d67fut7j.fsf@emptyhost.emptydomain.de> From: Oliver Kiddle References: <87d67fut7j.fsf@emptyhost.emptydomain.de> To: Kai Grossjohann Cc: zsh-users@sunsite.dk Subject: Re: Case insensitive completion on ancient zsh versions? Date: Mon, 15 Mar 2004 10:57:55 +0100 Message-ID: <24877.1079344675@trentino.logica.co.uk> Kai Grossjohann wrote: > I've got a login on various systems which have zsh version 3.1 (!) > installed on them. To add to the joy, they just have the binary, and > no documentation. You'll need to be more precise about the zsh version than that: there's a huge difference between 3.1.1 and 3.1.9. Is it using the new function based completion or compctl. With compctl, you might be able to do this (I think): compctl -T -M 'm:{a-zA-Z}={A-Za-z}' For new completion it is difficult to know because it could be compconfig or zstyle and the style changed a few times. 3.1 was a development series. Try this (which is right for 4.x): zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' If you've got anything older than about 3.1.5 then I don't think it is possible. Oliver