From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9901 invoked from network); 18 Oct 2001 22:20:31 -0000 Received: from unknown (HELO sunsite.dk) (130.225.247.90) by ns1.primenet.com.au with SMTP; 18 Oct 2001 22:20:31 -0000 Received: (qmail 24984 invoked by alias); 18 Oct 2001 22:20:18 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 4399 Received: (qmail 24970 invoked from network); 18 Oct 2001 22:20:17 -0000 Date: Thu, 18 Oct 2001 23:20:16 +0100 To: Jesper Holmberg Cc: zsh-users Subject: Re: Menu-complete with tab, complete with alt-tab Message-ID: <20011018232016.C10295@fysh.org> References: <20011018234825.B5311@strindberg.maisel.enst-bretagne.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20011018234825.B5311@strindberg.maisel.enst-bretagne.fr> User-Agent: Mutt/1.3.22i From: Zefram Jesper Holmberg wrote: >setopt MENU_COMPLETE > >in my .zshrc to get menu-complete bound to tab. However, it would be >very nice to have alt-tab bound to "regular" complete (preferably with >auto_list as well). Can this be done? If so, how? MENU_COMPLETE doesn't change keybindings, it changes the behaviour of the standard binding, which is expand-or-complete. So what you want is, instead of the setopt, bindkey "^I" menu-complete bindkey "\M-^I" expand-or-complete -zefram