From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23449 invoked from network); 27 May 2009 19:12:16 -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=BAYES_00 autolearn=ham version=3.2.5 Received: from new-brage.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.254.104) by ns1.primenet.com.au with SMTP; 27 May 2009 19:12:16 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 96696 invoked from network); 27 May 2009 19:12:11 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 27 May 2009 19:12:11 -0000 Received: (qmail 16478 invoked by alias); 27 May 2009 19:12:07 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 27005 Received: (qmail 16465 invoked from network); 27 May 2009 19:12:06 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 27 May 2009 19:12:06 -0000 Received: from QMTA05.westchester.pa.mail.comcast.net (qmta05.westchester.pa.mail.comcast.net [76.96.62.48]) by bifrost.dotsrc.org (Postfix) with ESMTP id B788C80307FB for ; Wed, 27 May 2009 21:12:03 +0200 (CEST) Received: from OMTA04.westchester.pa.mail.comcast.net ([76.96.62.35]) by QMTA05.westchester.pa.mail.comcast.net with comcast id wdlE1b0060ldTLk55jC421; Wed, 27 May 2009 19:12:04 +0000 Received: from smtp.klanderman.net ([98.217.254.247]) by OMTA04.westchester.pa.mail.comcast.net with comcast id wjC31b00m5M2Np63QjC47A; Wed, 27 May 2009 19:12:04 +0000 Received: from lwm.klanderman.net (unknown [192.168.100.50]) by smtp.klanderman.net (Postfix) with ESMTP id A31A5B30147 for ; Wed, 27 May 2009 15:12:02 -0400 (EDT) Received: by lwm.klanderman.net (Postfix, from userid 500) id 7BC549FC61B; Wed, 27 May 2009 15:12:02 -0400 (EDT) From: Greg Klanderman To: zsh-workers@sunsite.dk Subject: Re: PATCH: Add CORRECT_NOCOMPSYS option Reply-To: gak@klanderman.net Date: Wed, 27 May 2009 15:12:02 -0400 In-Reply-To: <20090527175941.3bbe2eba@news01> (Peter Stephenson's message of "Wed, 27 May 2009 17:59:41 +0100") Message-ID: User-Agent: Gnus/5.1007 (Gnus v5.10.7) XEmacs/21.4.17 (linux) References: <1238890030-4683-1-git-send-email-ft@bewatermyfriend.org> <090404193718.ZM19801@torch.brasslantern.com> <20090405191304.1908fca8@pws-pc> <090405151115.ZM13159@torch.brasslantern.com> <20090406100929.505617e2@news01> <2d460de70905270930j681da6a5kf7848d67d89f0c69@mail.gmail.com> <20090527175941.3bbe2eba@news01> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Scanned: ClamAV 0.94.2/9397/Wed May 27 16:48:50 2009 on bifrost X-Virus-Status: Clean >>>>> Peter Stephenson writes: > On Wed, 27 May 2009 18:30:13 +0200 > Richard Hartmann wrote: >> >> Just to be certain: A binary called _foo would never be considered for >> spelling correction in this case? > Correct. I don't use the correction stuff, only a matcher-list that does exact match, then case-insensitive, then case-insensitive substring. But in the same vein, what I really want is a way to configure the behavior for functions, variables, etc. beginning with "_" to be like filenames beginning with ".": completion should work if I have explicitly typed the leading "_", but even substring matching should not *generate* a leading "_". Can anyone point me to the file completion logic that does this? greg