Announcements and discussions for Gnus, the GNU Emacs Usenet newsreader
 help / color / mirror / Atom feed
* "colorize" the gnus-summary buffer ?
@ 2010-08-03 12:33 Stinky Wizzleteet
  2010-08-05 13:49 ` 厚脸王
  0 siblings, 1 reply; 3+ messages in thread
From: Stinky Wizzleteet @ 2010-08-03 12:33 UTC (permalink / raw)
  To: info-gnus-english

Hi, 
I would like the summary buffer to make the subject look a little more
pronounced.
Can I give the subject a different color (or face for that matter) than
the rest ?

thanks,

wzzl

-- 
---------------------
no gnus is bad news

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: "colorize" the gnus-summary buffer ?
  2010-08-03 12:33 "colorize" the gnus-summary buffer ? Stinky Wizzleteet
@ 2010-08-05 13:49 ` 厚脸王
  2010-08-08 20:17   ` Stinky Wizzleteet
  0 siblings, 1 reply; 3+ messages in thread
From: 厚脸王 @ 2010-08-05 13:49 UTC (permalink / raw)
  To: info-gnus-english


8.4.5 Formatting Fonts
----------------------

There are specs for highlighting, and these are shared by all the format
variables.  Text inside the `%(' and `%)' specifiers will get the
special `mouse-face' property set, which means that it will be
highlighted (with `gnus-mouse-face') when you put the mouse pointer
over it.

   Text inside the `%{' and `%}' specifiers will have their normal
faces set using `gnus-face-0', which is `bold' by default.  If you say
`%1{', you'll get `gnus-face-1' instead, and so on.  Create as many
faces as you wish.  The same goes for the `mouse-face' specs--you can
say `%3(hello%)' to have `hello' mouse-highlighted with
`gnus-mouse-face-3'.

   Text inside the `%<<' and `%>>' specifiers will get the special
`balloon-help' property set to `gnus-balloon-face-0'.  If you say
`%1<<', you'll get `gnus-balloon-face-1' and so on.  The
`gnus-balloon-face-*' variables should be either strings or symbols
naming functions that return a string.  When the mouse passes over text
with this property set, a balloon window will appear and display the
string.  Please refer to *Note Tooltips: (emacs)Tooltips, (in GNU
Emacs) or the doc string of `balloon-help-mode' (in XEmacs) for more
information on this.  (For technical reasons, the guillemets have been
approximated as `<<' and `>>' in this paragraph.)

   Here's an alternative recipe for the group buffer:

     ;; Create three face types.
     (setq gnus-face-1 'bold)
     (setq gnus-face-3 'italic)

     ;; We want the article count to be in
     ;; a bold and green face.  So we create
     ;; a new face called `my-green-bold'.
     (copy-face 'bold 'my-green-bold)
     ;; Set the color.
     (set-face-foreground 'my-green-bold "ForestGreen")
     (setq gnus-face-2 'my-green-bold)

     ;; Set the new & fancy format.
     (setq gnus-group-line-format
           "%M%S%3{%5y%}%2[:%] %(%1{%g%}%)\n")

   I'm sure you'll be able to use this scheme to create totally
unreadable and extremely vulgar displays.  Have fun!

   Note that the `%(' specs (and friends) do not make any sense on the
mode-line variables.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: "colorize" the gnus-summary buffer ?
  2010-08-05 13:49 ` 厚脸王
@ 2010-08-08 20:17   ` Stinky Wizzleteet
  0 siblings, 0 replies; 3+ messages in thread
From: Stinky Wizzleteet @ 2010-08-08 20:17 UTC (permalink / raw)
  To: info-gnus-english

厚脸王 <houlianwang@gmail.com> writes:

Hey thanks, that worked like a charm !
thx
wzzl.

> 8.4.5 Formatting Fonts
> ----------------------
>
> There are specs for highlighting, and these are shared by all the format
> variables.  Text inside the `%(' and `%)' specifiers will get the
> special `mouse-face' property set, which means that it will be
> highlighted (with `gnus-mouse-face') when you put the mouse pointer
> over it.
>
>    Text inside the `%{' and `%}' specifiers will have their normal
> faces set using `gnus-face-0', which is `bold' by default.  If you say
> `%1{', you'll get `gnus-face-1' instead, and so on.  Create as many
> faces as you wish.  The same goes for the `mouse-face' specs--you can
> say `%3(hello%)' to have `hello' mouse-highlighted with
> `gnus-mouse-face-3'.
>
>    Text inside the `%<<' and `%>>' specifiers will get the special
> `balloon-help' property set to `gnus-balloon-face-0'.  If you say
> `%1<<', you'll get `gnus-balloon-face-1' and so on.  The
> `gnus-balloon-face-*' variables should be either strings or symbols
> naming functions that return a string.  When the mouse passes over text
> with this property set, a balloon window will appear and display the
> string.  Please refer to *Note Tooltips: (emacs)Tooltips, (in GNU
> Emacs) or the doc string of `balloon-help-mode' (in XEmacs) for more
> information on this.  (For technical reasons, the guillemets have been
> approximated as `<<' and `>>' in this paragraph.)
>
>    Here's an alternative recipe for the group buffer:
>
>      ;; Create three face types.
>      (setq gnus-face-1 'bold)
>      (setq gnus-face-3 'italic)
>
>      ;; We want the article count to be in
>      ;; a bold and green face.  So we create
>      ;; a new face called `my-green-bold'.
>      (copy-face 'bold 'my-green-bold)
>      ;; Set the color.
>      (set-face-foreground 'my-green-bold "ForestGreen")
>      (setq gnus-face-2 'my-green-bold)
>
>      ;; Set the new & fancy format.
>      (setq gnus-group-line-format
>            "%M%S%3{%5y%}%2[:%] %(%1{%g%}%)\n")
>
>    I'm sure you'll be able to use this scheme to create totally
> unreadable and extremely vulgar displays.  Have fun!
>
>    Note that the `%(' specs (and friends) do not make any sense on the
> mode-line variables.
>

-- 
---------------------
no gnus is bad news

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-08-08 20:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-08-03 12:33 "colorize" the gnus-summary buffer ? Stinky Wizzleteet
2010-08-05 13:49 ` 厚脸王
2010-08-08 20:17   ` Stinky Wizzleteet

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).