Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: A couple completion glitches
- X-seq: zsh-workers 12061
- From: Wayne Davison <wayned@xxxxxxxxxxxxxxxxxxxxx>
- To: Bart Schaefer <schaefer@xxxxxxxxxxxxxxxxxxxxxxx>
- Subject: Re: A couple completion glitches
- Date: Sun, 25 Jun 2000 01:38:07 -0700 (PDT)
- Cc: Zsh Workers <zsh-workers@xxxxxxxxxxxxxx>
- In-reply-to: <1000624232123.ZM16787@xxxxxxxxxxxxxxxxxxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxxxxxx; run by ezmlm
On Sat, 24 Jun 2000, Bart Schaefer wrote:
> You DO need to set the suffix style, but you need to set it to "false".
This has an unfortuante side-effect. It does fix the problem I
complained about, though:
% touch ~/foo{1..3}
% zstyle ':completion:*:expand:*' suffix false
% ls ~/foo*<tab>
This becomes the proper:
% ls ~/foo1 ~/foo2 ~/foo3
~/foo1 ~/foo2 ~/foo3
~/foo1 ~/foo2 ~/foo3
~/foo*
However, the following behaves in a very undesireable manner:
% ls ~/foo<tab>
This becomes:
% ls /home/wayne/foo
/home/wayne/foo
~/foo
Which is not what I want at all.
It still seems strange to me that (without the above suffix option)
foo* gets glob expansion but ~/foo* does not. Surely this should not
be the default even if this turns out (for some strange reason) not to
be a bug.
BTW, thanks for pointing out the "group-name" setting. I think that
might be what I will choose to use (and it is reflected in the above
menu-completion output).
..wayne..
Messages sorted by:
Reverse Date,
Date,
Thread,
Author