Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: make zsh completion ergonomics closer to those of bash?
- X-seq: zsh-users 14786
- From: "Benjamin R. Haskell" <zsh@xxxxxxxxxx>
- To: Ian Clarke <ian@xxxxxxxxxxxxxx>
- Subject: Re: make zsh completion ergonomics closer to those of bash?
- Date: Wed, 3 Feb 2010 16:56:18 -0500 (EST)
- Cc: zsh-users@xxxxxxx
- In-reply-to: <823242bd1002031333i447cc89eye46c3f7eb2953647@xxxxxxxxxxxxxx>
- List-help: <mailto:zsh-users-help@zsh.org>
- List-id: Zsh Users List <zsh-users.zsh.org>
- List-post: <mailto:zsh-users@zsh.org>
- Mailing-list: contact zsh-users-help@xxxxxxx; run by ezmlm
- References: <823242bd1002031303s325579e3x8333945d7b891e45@xxxxxxxxxxxxxx> <843c889d1002031327k3332da79v9e0edc2520fa71dc@xxxxxxxxxxxxxx> <823242bd1002031333i447cc89eye46c3f7eb2953647@xxxxxxxxxxxxxx>
On Wed, 3 Feb 2010, Ian Clarke wrote:
> On Wed, Feb 3, 2010 at 3:27 PM, Matias GraÃa <matias.alejo@xxxxxxxxx> wrote:
>
> > On Wed, Feb 3, 2010 at 6:03 PM, Ian Clarke <ian@xxxxxxxxxxxxxx> wrote:
> > > When I hit the tab key, the first autocompletion is filled out
> > > automatically, and you need to cycle through the completions by
> > > hitting tab repeatedly (or using the arrow keys).
> > >
> > > Is there any way to make zsh completion act more like bash in this
> > > regard?
> >
> > After a long try/error session, I've found a few days ago that the
> > variable MENUCOMPLETE had a lot to do with this. See if you have
> > "setopt MENUCOMPLETE" somewhere in your rc's and try to comment it
> > out.
> >
>
> Thanks MatÃas, unfortunately I couldn't find MENUCOMPLETE anywhere in
> my .zshrc or any file sourced from it. I tried typing "unsetopt
> MENUCOMPLETE" but it didn't help :-(
>
nomenucomplete (synonym for unsetopt menucomplete) is the default.
Using zsh-4.3.10, the only completion-related option I have is:
$ setopt | grep -E 'comp|menu'
noautomenu
(i.e. 'setopt noautomenu' or 'unsetopt automenu')
Firing up bash-4.something it appears to work the same.
If that doesn't work for you, your distribution might set something up
in /etc{,/zsh}/{,z{,sh}}{profile,env,rc}
(i.e. a bunch of places w/ or w/o a preceding zsh in the name of the
file or directory.)
I always look in 'man zshall', since I never know what submanual things
are in. For more information on this in zshall, you can find options
relevant to completion by searching 2-3 times for 'Completion' or once
for 'ALWAYS_LAST_PROMPT'.
In this particular instance, you should also take a look at 'man
zshoptions', which starts off with a description of the ways to specify
options (i.e. the facts that 'AUTO_MENU' is equivalent to 'automenu' and
that 'noautomenu' is equivalent to 'unsetopt automenu'.)
I also see BASH_AUTO_LIST (i.e. 'setopt bashautolist'), which might have
relevance here.
--
Best,
Ben
Messages sorted by:
Reverse Date,
Date,
Thread,
Author