From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18803 invoked from network); 8 Jun 2000 20:08:36 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 8 Jun 2000 20:08:36 -0000 Received: (qmail 15571 invoked by alias); 8 Jun 2000 20:08:16 -0000 Mailing-List: contact zsh-users-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 3140 Received: (qmail 15560 invoked from network); 8 Jun 2000 20:08:15 -0000 From: "Bart Schaefer" Message-Id: <000608130757.ZM16878@candle.brasslantern.com> Date: Thu, 8 Jun 2000 13:07:57 -0700 In-Reply-To: Comments: In reply to Fletch "Re: wish for a colored completion system" (Jun 8, 3:39pm) References: <200006081041.MAA20210@beta.informatik.hu-berlin.de> <20000608144407.A2039@linux-ws.kg-hittfeld.local> <20000608163130.A2637@linux-ws.kg-hittfeld.local> <200006081449.QAA21570@beta.informatik.hu-berlin.de> <20000608165051.B3286@picard.franken.de> <20000608171137.C2997@linux-ws.kg-hittfeld.local> <20000608173254.D2997@linux-ws.kg-hittfeld.local> <0FVU005MNF7Q6N@la-la.cambridgesiliconradio.com> <1000608173740.ZM16747@candle.brasslantern.com> <000608122524.ZM16857@candle.brasslantern.com> X-Mailer: Z-Mail Lite (5.0.0 30July97) To: Fletch Subject: Re: wish for a colored completion system Cc: zsh-users@sunsite.auc.dk MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On Jun 8, 3:39pm, Fletch wrote: > > If I add '=lemur*=01;32' to ':completion:*' list-colors it > works fine (ssh l produces three highighted lemur* and plain > localhost and lp). Aha! You have host names and user names listed simultaneously. Add this: zstyle ':completion:*' group-name '' That will make two sub-lists, one of host names and one of user names, and then you'll get the colors in the host names. I'm not sure why ':completion:*:ssh:*' doesn't work for the combined listing; perhaps it's a bug. Sven?