From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20289 invoked from network); 14 Oct 2008 01:47:04 -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=0.0 required=5.0 tests=none 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; 14 Oct 2008 01:47:04 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 74799 invoked from network); 14 Oct 2008 01:46:50 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 14 Oct 2008 01:46:50 -0000 Received: (qmail 13301 invoked by alias); 14 Oct 2008 01:46:41 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 25885 Received: (qmail 13284 invoked from network); 14 Oct 2008 01:46:40 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 14 Oct 2008 01:46:40 -0000 Received: from www890.sakura.ne.jp (www890.sakura.ne.jp [219.94.128.100]) by bifrost.dotsrc.org (Postfix) with ESMTPS id 953E780524C0 for ; Tue, 14 Oct 2008 03:46:36 +0200 (CEST) Received: from [192.168.1.10] (pl240.nas932.p-gunma.nttpc.ne.jp [219.102.183.240]) (authenticated bits=0) by www890.sakura.ne.jp (8.13.6/8.13.6) with ESMTP id m9E1kTcM048647 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 14 Oct 2008 10:46:30 +0900 (JST) (envelope-from morita-pub-en-debian@inz.sakura.ne.jp) Message-ID: <48F3F9F5.1040009@inz.sakura.ne.jp> Date: Tue, 14 Oct 2008 10:46:29 +0900 From: Morita Sho User-Agent: Mozilla-Thunderbird 2.0.0.16 (X11/20080724) MIME-Version: 1.0 To: zsh-workers@sunsite.dk, 501851@bugs.debian.org Subject: =?UTF-8?B?UmU6IEJ1ZyM1MDE4NTE6IHpzaDogQ29tcGxldGlvbiBmYWlscyBpZiA=?= =?UTF-8?B?YSBkaXJlY3RvcnkgbmFtZSBjb250YWlucyAnKCcsICcpJyBhbmQgJ8SEICcu?= References: <20081010230611.23133.42221.reportbug@debian> <20081010231712.GA20915@scru.org> <48F0AE88.1020307@inz.sakura.ne.jp> <20081011225255.0df2e350@pws-pc> <48F2A515.1030203@inz.sakura.ne.jp> <2d460de70810122325r7e576759t204653bd537006b5@mail.gmail.com> In-Reply-To: <2d460de70810122325r7e576759t204653bd537006b5@mail.gmail.com> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Virus-Scanned: ClamAV 0.92.1/8418/Tue Oct 14 01:45:34 2008 on bifrost X-Virus-Status: Clean On 10/13/2008 03:25 PM, Richard Hartmann wrote: > Just to be sure, you are talking about the second part here, not both ones, > correct? Sorry for ambiguous. I'm talking about both ones. Replacing _path_files solves both '()Ą'/[TAB] and Ą/[TAB] problems. On 10/13/2008 06:30 PM, Peter Stephenson wrote: > This works fine for me (as does the version with "()" after the previous > fix). Does the same still happen after "zsh -f; autoload -U compinit; > compinit"? Is the character the composed version, i.e. Unicode 0x0104, > which is 0xc4 0x84 in UTF-8, or could it be some decomposed version with > combining characters? > > Please send the output from running "^X?" if there no obvious difference. Thanks! The problem gone after "zsh -f; autoload -U compinit; compinit". The directory 'Ą' is exactly 0xc4 0x84. % ls Ą % ls | hexdump -C 00000000 c4 84 0a |...| I removed and reconstructed ~/.zshrc to find out what settings in my ~/.zshrc break the completion. The completion Ą/[TAB] works fine with the following .zshrc. % cat ~/.zshrc # Lines configured by zsh-newuser-install HISTFILE=~/.histfile HISTSIZE=1000 SAVEHIST=1000 bindkey -e # End of lines configured by zsh-newuser-install # The following lines were added by compinstall zstyle :compinstall filename '/home/qw/.zshrc' autoload -Uz compinit compinit # End of lines added by compinstall However, if I run `compinstall` and enable "Case-insensitive completion (lowercase matches uppercase)" from "2. Matching control" menu, the completion Ą/[TAB] stop to working. I see the following line were added to ~/.zshrc. zstyle ':completion:*' matcher-list 'm:{[:lower:]}={[:upper:]}' After removing the above line, the completion Ą/[TAB] works again. -- Morita Sho