From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12410 invoked by alias); 30 Sep 2011 14:31:44 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 16456 Received: (qmail 15655 invoked from network); 30 Sep 2011 14:31:32 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.7 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW, T_TO_NO_BRKTS_FREEMAIL autolearn=ham version=3.3.1 Received-SPF: pass (ns1.primenet.com.au: SPF record at _spf.google.com designates 209.85.210.171 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=SlNNMOOsVyJlSQr8maHRpxqGR8//cLfPQjKl0ksvAyQ=; b=mf5n1O/wtniC27wycYvz93PoiZAh7kw/cIZJHiQWLKjDuPS6HOtnPcltZwf0Gr5QTI fLrtVf5z0rUQiKlJT/vusb4mzyJcVDG4ZMW1L5tJtHgEP8fiVuc90GfSEjTLUvZJi9bM O7SVE5DlZc9ZbYbSK/GpAAIkJF+NeGH0KmmQM= MIME-Version: 1.0 In-Reply-To: References: <110930063913.ZM28923@torch.brasslantern.com> From: Anonymous bin ich Date: Fri, 30 Sep 2011 20:01:08 +0530 Message-ID: Subject: Re: ZSH completion To: zsh-users@zsh.org Content-Type: text/plain; charset=UTF-8 On Fri, Sep 30, 2011 at 7:42 PM, Anonymous bin ich wrote: > On Fri, Sep 30, 2011 at 7:09 PM, Bart Schaefer > wrote: >> On Sep 30, 10:37am, Anonymous bin ich wrote: >> } >> } I want Zsh to stop completing until I press tab for a second time. >> >> setopt bash_auto_list >> >> That will still complete on the first tab if there's exactly one match. >> > > Thanks, that is exactly what I wanted. > > Is there any equivalent for this using zstyle? (Not a problem, just a > OCD compliance in maintaining my zshrc) > > Regards, > I would also add the 'menucomplete' should be off for the aforementioned behavior: setopt NO_menucomplete -- Regards