From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17288 invoked from network); 23 Nov 2002 00:26:06 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 23 Nov 2002 00:26:06 -0000 Received: (qmail 10229 invoked by alias); 23 Nov 2002 00:25:59 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 17959 Received: (qmail 10218 invoked from network); 23 Nov 2002 00:25:57 -0000 Date: Fri, 22 Nov 2002 16:25:53 -0800 From: Danek Duvall To: Zsh Workers Subject: Overeager completion? Message-ID: <20021123002553.GA16698@lorien.emufarm.org> Mail-Followup-To: Danek Duvall , Zsh Workers Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.1i With zsh-4.0.6 on Linux (seen also with 4.0.3, as well as 4.0.5 on Solaris): % zsh -f % mkdir /tmp/foo % cd /tmp/foo % mkdir a b % touch a/{1,2,3,4} % cd /tmp/foo/b % ls ../^D a/ b/ % ls ..//^D a/ b/ Ok, fine. Now % autoload -U compinit % compinit % ls ../^D a/ b/ % ls ..//^D 1 2 3 4 Oops. Then, for good measure, hit ^C twice to quit the shell. :) Danek