From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18469 invoked from network); 23 Jun 2004 00:14:13 -0000 Received: from thor.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.86) by ns1.primenet.com.au with SMTP; 23 Jun 2004 00:14:13 -0000 Received: (qmail 22772 invoked from network); 23 Jun 2004 00:13:35 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 23 Jun 2004 00:13:35 -0000 Received: (qmail 22305 invoked by alias); 23 Jun 2004 00:13:13 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 7588 Received: (qmail 22295 invoked from network); 23 Jun 2004 00:13:13 -0000 Received: from thor.dotsrc.org (HELO a.mx.sunsite.dk) (qmailr@130.225.247.86) by sunsite.dk with SMTP; 23 Jun 2004 00:13:10 -0000 Received: (qmail 21893 invoked from network); 23 Jun 2004 00:13:09 -0000 Received: from sccrmhc13.comcast.net (204.127.202.64) by a.mx.sunsite.dk with SMTP; 23 Jun 2004 00:13:08 -0000 Received: from www.muino.org ([24.5.172.109]) by comcast.net (sccrmhc13) with ESMTP id <20040623001240016005r601e>; Wed, 23 Jun 2004 00:12:41 +0000 Received: by www.muino.org (Postfix, from userid 2555) id 76D2E19D10; Tue, 22 Jun 2004 17:12:17 -0700 (PDT) Date: Tue, 22 Jun 2004 17:12:17 -0700 From: Daniel Muino To: zsh-users@sunsite.dk Subject: Perl completion problem Message-ID: <20040623001217.GA6456@muino.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.6i X-Spam-Checker-Version: SpamAssassin 2.63 on a.mx.sunsite.dk X-Spam-Level: X-Spam-Status: No, hits=-0.0 required=6.0 tests=BAYES_40 autolearn=no version=2.63 X-Spam-Hits: -0.0 I'm having a problem with zsh 4.2.0 and completing perl scripts file names. If I set the file-sort to anything other than 'name' every time I hit I get no matches for 'Perl script' I.e.: zstyle ':completion:*' file-sort name perl # works fine zstyle ':completion:*' file-sort modification # or size, etc. perl # can't find 'Perl script' If I remove the glob qualifiers from _perl: - '1:Perl script:_files -/ -g "*.(p[ml]|PL)(-.)"' \ + '1:Perl script:_files -/ -g "*.(p[ml]|PL)"' \ It works fine under different file-sort options. Any ideas why? Thanks. Daniel