From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20504 invoked from network); 11 Sep 2004 20:29:49 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 11 Sep 2004 20:29:49 -0000 Received: (qmail 37431 invoked from network); 11 Sep 2004 20:29:43 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 11 Sep 2004 20:29:43 -0000 Received: (qmail 25046 invoked by alias); 11 Sep 2004 20:29:31 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 20353 Received: (qmail 25031 invoked from network); 11 Sep 2004 20:29:30 -0000 Received: from unknown (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 11 Sep 2004 20:29:30 -0000 Received: (qmail 36543 invoked from network); 11 Sep 2004 20:28:34 -0000 Received: from moonbase.zanshin.com (64.84.47.139) by a.mx.sunsite.dk with SMTP; 11 Sep 2004 20:28:32 -0000 Received: from toltec.zanshin.com (toltec.zanshin.com [64.84.47.166]) by moonbase.zanshin.com (8.13.1/8.13.1) with ESMTP id i8BKSNMo005210; Sat, 11 Sep 2004 13:28:23 -0700 Date: Sat, 11 Sep 2004 13:28:23 -0700 (PDT) From: Bart Schaefer Reply-To: zsh-workers@sunsite.dk To: martin f krafft cc: zsh-workers@sunsite.dk, 270608-done@bugs.debian.org Subject: Re: Bug#270608: zsh: dpkg completion broken In-Reply-To: <20040911170736.GA23592@cirrus.madduck.net> Message-ID: References: <20040910161910.GA23853@cirrus.madduck.net> <20040910163119.GA12581@scowler.net> <20040910172215.GA27368@cirrus.madduck.net> <20040910185500.GA15086@scowler.net> <20040908085302.GA32363@cirrus.madduck.net> <20040908180727.GB25987@scowler.net> <20040910093933.GC4099@cirrus.madduck.net> <20040910155528.GA11672@scowler.net> <20040911063908.GA29864@cirrus.madduck.net> <20040911163125.GA32267@scowler.net> <20040911170736.GA23592@cirrus.madduck.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII 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_44 autolearn=no version=2.63 X-Spam-Hits: -0.0 On Sat, 11 Sep 2004, martin f krafft wrote: > zstyle ':completion:*:(all-|)files' ignored-patterns '*.bk' '*~' '*\#' > This opens another issue... the manpage says that > > Note that the EXTENDED_GLOB option is set during the execution > of completion functions, so the characters #, ~ and ^ have > special meanings in the patterns. > > However, the above line only works if I do *not* escape ~. That's probably because ~ has special meaning only at certain positions in patterns, and at the end is not one of them. However, it is a little surprising.