From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29567 invoked from network); 16 Sep 2004 03:09:55 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 16 Sep 2004 03:09:55 -0000 Received: (qmail 62660 invoked from network); 16 Sep 2004 03:09:48 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 16 Sep 2004 03:09:48 -0000 Received: (qmail 1233 invoked by alias); 16 Sep 2004 03:09:41 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 7999 Received: (qmail 1219 invoked from network); 16 Sep 2004 03:09:41 -0000 Received: from unknown (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 16 Sep 2004 03:09:41 -0000 Received: (qmail 61559 invoked from network); 16 Sep 2004 03:08:58 -0000 Received: from ms-smtp-02.texas.rr.com (HELO ms-smtp-02-eri0.texas.rr.com) (24.93.47.41) by a.mx.sunsite.dk with SMTP; 16 Sep 2004 03:08:56 -0000 Received: from amdxp.kalama.no-ip.org (cs666888-186.austin.rr.com [66.68.88.186]) by ms-smtp-02-eri0.texas.rr.com (8.12.10/8.12.7) with ESMTP id i8G38rHv000774 for ; Wed, 15 Sep 2004 22:08:53 -0500 (CDT) Received: from [10.0.1.100] (mothership.kalama.no-ip.org [10.0.1.100]) by amdxp.kalama.no-ip.org (Postfix) with ESMTP id 4F68B404 for ; Wed, 15 Sep 2004 22:08:53 -0500 (CDT) Mime-Version: 1.0 (Apple Message framework v619) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: Content-Transfer-Encoding: 7bit Reply-To: zsh-users@sunsite.dk From: lists Subject: Globbing question Date: Wed, 15 Sep 2004 22:08:53 -0500 To: zsh-users@sunsite.dk X-Mailer: Apple Mail (2.619) X-Virus-Scanned: Symantec AntiVirus Scan Engine X-Spam-Checker-Version: SpamAssassin 2.63 on a.mx.sunsite.dk X-Spam-Level: X-Spam-Status: No, hits=0.1 required=6.0 tests=BAYES_20,RCVD_IN_SORBS autolearn=no version=2.63 X-Spam-Hits: 0.1 Hi all, I'm trying to match files which aren't executable for the following completion: zstyle ':completion:*:complete:-command-::commands' ignored-patterns I tried this: zstyle ':completion:*:complete:-command-::commands' ignored-patterns '*^((x)|(X)|(E))' thinking that that would translate to "complete everything besides a file with the user, group, or other executable bit set", but that stopped completing all files which were executable. Can anyone explain? What is a better way to do this? Thanks.