From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14179 invoked from network); 1 Mar 2009 07:19:26 -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; 1 Mar 2009 07:19:26 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 94649 invoked from network); 1 Mar 2009 07:19:19 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 1 Mar 2009 07:19:19 -0000 Received: (qmail 25337 invoked by alias); 1 Mar 2009 07:19:14 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 26651 Received: (qmail 25320 invoked from network); 1 Mar 2009 07:19:14 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 1 Mar 2009 07:19:14 -0000 Received: from mail-fx0-f171.google.com (mail-fx0-f171.google.com [209.85.220.171]) by bifrost.dotsrc.org (Postfix) with ESMTP id 051E18058F82 for ; Sun, 1 Mar 2009 08:19:10 +0100 (CET) Received: by fxm19 with SMTP id 19so1596972fxm.45 for ; Sat, 28 Feb 2009 23:19:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=qdgf+cX7w1hQHpe+SS7pw9M33UANip1eBP1rPpwhfKE=; b=ZV4inxUuc1lD1KsnmTb3FF9Cn09LPLlC9E6ukUqoLrprS7QmG1iu7cGwHfLHC31+X2 gFtCCLxjhXS3rGZUoYp6KbKyleo/F6zZOeQZX/G5y6Vzd60aD8E1wvNVd1PmnilXnUpi 0WOxIJsIhcZy2fH/1WULeTdH3JNdWZgwIpJk4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=p8qaG62m0cZ2IE8sU9Jg+CBkXPE+l2+jfXXv6luGLqC2xTTCfCyQXYcecIY0x4ep+S gtUYTwcwghG0/+x6s2zZaO2V/hSmsokP9GCNINajvsqe6UPTMYkf2jSetpC+YpD52aoQ Y+75XS3rqRhAa485hIbdQSWCWOOxSpOAHMhb0= MIME-Version: 1.0 Received: by 10.181.240.10 with SMTP id s10mr1598936bkr.62.1235891950303; Sat, 28 Feb 2009 23:19:10 -0800 (PST) In-Reply-To: <20090301021516.GZ4629@prunille.vinc17.org> References: <19e566510902280137s3bb02510te650364cb03145a9@mail.gmail.com> <200903010028.46088.arvidjaar@gmail.com> <19e566510902281428r5d70c182l720b99527ecc1d9d@mail.gmail.com> <20090301021516.GZ4629@prunille.vinc17.org> Date: Sun, 1 Mar 2009 08:19:10 +0100 Message-ID: <237967ef0902282319m476fc6c6o33d125ad410cd20b@mail.gmail.com> Subject: Re: Problems with non-ascii filenames From: Mikael Magnusson To: zsh-workers@sunsite.dk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Virus-Scanned: ClamAV 0.92.1/9058/Sun Mar 1 05:12:39 2009 on bifrost X-Virus-Status: Clean 2009/3/1 Vincent Lefevre : > On 2009-03-01 00:28:39 +0200, =C4=B0smail D=C3=B6nmez wrote: >> touch x=C3=B6=C3=B6x >> echo x >> >> completes to x=C3=B6=C3=B6x >> >> echo x=C3=B6 >> >> does nothing. > > Same problem under Linux: > > http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=3D374913 > >> Seems weird. > > Not weird. Normalization insensitivity is not implemented in zsh. Assuming a filename usually only has one or two accented chars, couldn't this be handled by using the _approximate completer? % touch xo<0308>bap % ls x=C3=B6bap for me this changes the commandline back to ls xo<0308>bap (without the combining option set). Unfortunately it seems you can only match the whole filename, not prefixes, so maybe it's not as useful as I first thought... --=20 Mikael Magnusson