From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19187 invoked from network); 2 May 2002 21:48:27 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 2 May 2002 21:48:27 -0000 Received: (qmail 7501 invoked by alias); 2 May 2002 21:48:18 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 17067 Received: (qmail 7488 invoked from network); 2 May 2002 21:48:17 -0000 Date: Thu, 2 May 2002 17:48:12 -0400 From: Hans Dieter Pearcey To: "joel w. reed" Cc: zsh-workers@sunsite.dk Subject: Re: [PATCH]always show complete list Message-ID: <20020502214812.GE14354@malachi.theoscape.net> References: <20020502184257.GA29797@ddiworld.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020502184257.GA29797@ddiworld.com> User-Agent: Mutt/1.3.28i On Thu, May 02, 2002 at 02:42:57PM -0400, joel w. reed wrote: > this patch adds a config option LISTALWAYS that if set, makes > zsh-4.0.4 always show the complete list if the completion > resulted in only a partial completion (to help the user decide > what to type next w/o the need for another TAB). > > lets say i have a directory with 2 entries: > > opal-3.0.4 > opal-4.0 > > my patched zsh will show the following after i type 'cd oTAB' > > (%:~/src) cd opal- > opal-3.0.4/ opal-4.0/ zsh already does this. see AUTO_LIST (which is on by default) and LIST_AMBIGUOUS in zshoptions. Specifically, if you setopt NO_LIST_AMBIGUOUS, the above behavior is observed. hdp.