From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14836 invoked from network); 24 Jan 2009 22:46:25 -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; 24 Jan 2009 22:46:25 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 89726 invoked from network); 24 Jan 2009 22:46:16 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 24 Jan 2009 22:46:16 -0000 Received: (qmail 4188 invoked by alias); 24 Jan 2009 22:46:08 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 26417 Received: (qmail 4173 invoked from network); 24 Jan 2009 22:46:07 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 24 Jan 2009 22:46:07 -0000 Received: from QMTA09.westchester.pa.mail.comcast.net (qmta09.westchester.pa.mail.comcast.net [76.96.62.96]) by bifrost.dotsrc.org (Postfix) with ESMTP id 71A2780271F0 for ; Sat, 24 Jan 2009 23:46:03 +0100 (CET) Received: from OMTA07.westchester.pa.mail.comcast.net ([76.96.62.59]) by QMTA09.westchester.pa.mail.comcast.net with comcast id 7QUz1b0031GhbT859am4GH; Sat, 24 Jan 2009 22:46:04 +0000 Received: from smtp.klanderman.net ([98.217.254.247]) by OMTA07.westchester.pa.mail.comcast.net with comcast id 7am41b0015M2Np63Tam4kf; Sat, 24 Jan 2009 22:46:04 +0000 Received: from lwm.klanderman.net (unknown [192.168.100.50]) by smtp.klanderman.net (Postfix) with ESMTP id C8420B30148 for ; Sat, 24 Jan 2009 17:46:02 -0500 (EST) Received: by lwm.klanderman.net (Postfix, from userid 500) id A059D9FC5EF; Sat, 24 Jan 2009 17:46:02 -0500 (EST) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18811.39466.611672.982274@gargle.gargle.HOWL> Date: Sat, 24 Jan 2009 17:46:02 -0500 From: Greg Klanderman To: Zsh list Subject: never complete functions beginning with "_"? Reply-To: gak@klanderman.net X-Mailer: VM 7.17 under 21.4 (patch 17) "Jumbo Shrimp" XEmacs Lucid X-Virus-Scanned: ClamAV 0.92.1/8899/Sat Jan 24 14:06:33 2009 on bifrost X-Virus-Status: Clean Hi, Is there some way to configure completion to never complete function names starting with "_"? The ignored-patterns style doesn't seem to work.. this is especially a problem because I configure substring completion as a fallback: zstyle ':completion:*' matcher-list \ '' 'm:{a-zA-Z}={A-Za-z}' 'l:|=* r:|=* m:{a-zA-Z}={A-Za-z}' Alternately, some way to modify that matcher-list style to never add a leading "_" in command positions would work. It really seems some way to hide all the zle and completion functions in a separate namespace/package/whatever would be the ideal solution. thanks, Greg