From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24074 invoked from network); 25 Jun 2000 08:38:50 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 25 Jun 2000 08:38:50 -0000 Received: (qmail 5296 invoked by alias); 25 Jun 2000 08:38:39 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 12061 Received: (qmail 5289 invoked from network); 25 Jun 2000 08:38:39 -0000 Date: Sun, 25 Jun 2000 01:38:07 -0700 (PDT) From: Wayne Davison X-Sender: wayne@phong.blorf.net To: Bart Schaefer Cc: Zsh Workers Subject: Re: A couple completion glitches In-Reply-To: <1000624232123.ZM16787@candle.brasslantern.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII 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* 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 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..