From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7682 invoked from network); 20 Jan 2003 16:05:27 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 20 Jan 2003 16:05:27 -0000 Received: (qmail 2214 invoked by alias); 20 Jan 2003 16:05:01 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 5778 Received: (qmail 2205 invoked from network); 20 Jan 2003 16:05:01 -0000 X-MessageWall-Score: 0 (sunsite.dk) X-VirusChecked: Checked X-Env-Sender: kiddleo@logica.com X-Msg-Ref: server-2.tower-4.messagelabs.com!1043078697!33580 X-Authentication-Warning: iris.logica.co.uk: Host [158.234.142.11] claimed to be finches.logica.co.uk cc: ZSH User List In-reply-to: <20030120102923.A2388@radiomaranon.org.pe> From: Oliver Kiddle References: <20030120102923.A2388@radiomaranon.org.pe> To: Andy Spiegl Subject: Re: How to do filename completion with umlauts? Date: Mon, 20 Jan 2003 17:07:44 +0100 Message-ID: <8155.1043078864@finches.logica.co.uk> Sender: kiddleo@logica.com On 20 Jan, you wrote: > Hi, > > how do I make case-insensitive filename completion work with umlauts? > I tried > zstyle ":completion:*" matcher-list 'm:{A-Zöäüa-zÖÄÜ}={a-zöäüA-ZÖÄÜ}' You're mapping the characters to themselves instead of to the opposite case. Try 'm:{A-Zöäüa-zÖÄÜ}={a-zÖÄÜA-Zöäü}' instead. Oliver This e-mail and any attachment is for authorised use by the intended recipient(s) only. It may contain proprietary material, confidential information and/or be subject to legal privilege. It should not be copied, disclosed to, retained or used by, any other party. If you are not an intended recipient then please promptly delete this e-mail and any attachment and all copies and inform the sender. Thank you.