From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15663 invoked from network); 3 Aug 2006 16:43:39 -0000 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00, FORGED_RCVD_HELO,UNPARSEABLE_RELAY autolearn=ham version=3.1.4 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 3 Aug 2006 16:43:39 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 37478 invoked from network); 3 Aug 2006 16:43:31 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 3 Aug 2006 16:43:31 -0000 Received: (qmail 15925 invoked by alias); 3 Aug 2006 16:43:23 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 10578 Received: (qmail 15916 invoked from network); 3 Aug 2006 16:43:23 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 3 Aug 2006 16:43:23 -0000 Received: (qmail 36362 invoked from network); 3 Aug 2006 16:43:23 -0000 Received: from vms042pub.verizon.net (206.46.252.42) by a.mx.sunsite.dk with SMTP; 3 Aug 2006 16:43:21 -0000 Received: from torch.brasslantern.com ([71.116.116.250]) by vms042.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J3F00H4RL3DDP8B@vms042.mailsrvcs.net> for zsh-users@sunsite.dk; Thu, 03 Aug 2006 11:42:50 -0500 (CDT) Received: from torch.brasslantern.com (localhost.localdomain [127.0.0.1]) by torch.brasslantern.com (8.13.1/8.13.1) with ESMTP id k73GglUx019301 for ; Thu, 03 Aug 2006 09:42:47 -0700 Received: (from schaefer@localhost) by torch.brasslantern.com (8.13.1/8.13.1/Submit) id k73GgkDF019300 for zsh-users@sunsite.dk; Thu, 03 Aug 2006 09:42:46 -0700 Date: Thu, 03 Aug 2006 09:42:46 -0700 From: Bart Schaefer Subject: Re: Turn off completion of users In-reply-to: <20060803155512.GC1118@roadrunner.aventurien.local> To: zsh-users@sunsite.dk Message-id: <060803094246.ZM19299@torch.brasslantern.com> MIME-version: 1.0 X-Mailer: OpenZMail Classic (0.9.2 24April2005) Content-type: text/plain; charset=us-ascii References: <20060803155512.GC1118@roadrunner.aventurien.local> Comments: In reply to Ulrich Spoerlein "Turn off completion of users" (Aug 3, 8:55am) On Aug 3, 8:55am, Ulrich Spoerlein wrote: } } There is a user 'proxy' on my system, when I now try to 'cd' into a } directory, let's call it 'profiles' the file/dir completion will offer } me 'proxy' as an alternative. } } I think the Completion/Unix/_users might be responsible, is there a way } to selectively disable this completion scheme? It's not really _users, it's _cd -- you have setopt cdablevars, and the _cd function therefore attempts to expand anything that can come after a tilde, even if the tilde is not explicitly present. I think the call tree is _cd -> _tilde -> _users. This came up at least once before, try searching the archives.