info-gnus-english
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Highlighting groups with tick marks


From: Ted Zlatanov
Subject: Re: Highlighting groups with tick marks
Date: Wed, 08 Dec 2010 15:43:50 -0000
User-agent: Gnus/5.110011 (No Gnus v0.11) Emacs/24.0.50 (gnu/linux)

On Thu, 08 Jul 2010 20:30:10 +0200 Sébastien Vauban 
<wxhgmqzgwmuf@spammotel.com> wrote: 

SV> Here I share my customization:
SV> (defface my-group-ticked-face
SV>   '((t (:foreground "#FF7777"))) "Ticked group face")

SV> (setq gnus-group-highlight
SV>       (append
SV>        '(((> ticked 0) . my-group-ticked-face))
SV>        gnus-group-highlight))

I'm glad it works for you.  I'd use add-to-list to make it a little
simpler but that's just cosmetics:

(add-to-list 'gnus-group-highlight 
             '((> ticked 0) . my-group-ticked-face))

Ted


reply via email to

[Prev in Thread] Current Thread [Next in Thread]