From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6712 invoked from network); 12 Oct 2006 10:51:12 -0000 X-Spam-Checker-Version: SpamAssassin 3.1.6 (2006-10-03) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.5 required=5.0 tests=BAYES_00,FORGED_RCVD_HELO autolearn=ham version=3.1.6 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 12 Oct 2006 10:51:12 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 8122 invoked from network); 12 Oct 2006 10:51:06 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 12 Oct 2006 10:51:06 -0000 Received: (qmail 4232 invoked by alias); 12 Oct 2006 10:50:55 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 10844 Received: (qmail 4223 invoked from network); 12 Oct 2006 10:50:54 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 12 Oct 2006 10:50:54 -0000 Received: (qmail 6837 invoked from network); 12 Oct 2006 10:50:54 -0000 Received: from mail.gmx.de (HELO mail.gmx.net) (213.165.64.20) by a.mx.sunsite.dk with SMTP; 12 Oct 2006 10:50:53 -0000 Received: (qmail invoked by alias); 12 Oct 2006 10:50:53 -0000 Received: from dslb-088-070-001-043.pools.arcor-ip.net (EHLO local1) [88.70.1.43] by mail.gmx.net (mp010) with SMTP; 12 Oct 2006 12:50:53 +0200 X-Authenticated: #19240895 Date: Thu, 12 Oct 2006 12:51:44 +0200 From: denis To: zsh-users@sunsite.dk Cc: Andrey Borzenkov Subject: Re: get the list of completions immediately In-Reply-To: <200610120648.20734.arvidjaar@newmail.ru> References: <200610120648.20734.arvidjaar@newmail.ru> X-Mailer: Sylpheed (pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Message-ID: <20061012105144.EBtyDbWogO4cD4_zniy8JUziv8XuE2SQhivA2hN4WIc@z> Andrey Borzenkov wrote: > On Thursday 12 October 2006 02:32, denis wrote: > > % ls > > abc_one abc_two abc_three > > % echo a > > > > now I have: > > > > % echo abc_ > > > > and if I press tab one more time I see the possible completions. > > > > What do I have to do to see the completions right after I pressed > > tab the first time? > > I'd assume 'setopt autolist' That option was already set. But you pointed me in the right direction. The option I was looking for is 'nolistambiguous'. Thank you.