Gnus development mailing list
 help / color / mirror / Atom feed
From: "Robin S. Socha" <robin@socha.net>
Cc: ding@gnus.org
Subject: Re: Articles enhancings
Date: 09 Nov 1999 15:40:37 +0100	[thread overview]
Message-ID: <deathsquad.m3g0yframy.fsf@socha.net> (raw)
In-Reply-To: Pieter Wenk's message of "Tue, 9 Nov 1999 10:37:27 +0100"

* Pieter Wenk <pwenk@urbanet.ch> writes:
> What I should like to obtain is:

> -Different colors in relation to the texts ie. "authors"
(setq
 ;; Highlight cited text
 gnus-treat-highlight-citation 'last
 ;; Highlight the signature
 gnus-treat-highlight-signature 'last)

> -Clicking on an url, should fire automatically Netscape.
>  What would be the workable entry in .gnus for this effect ?

:*======================= 
;:* make netscape use a new window when clicking a URL
;   by Karl Kleinpaste
(setq browse-url-new-window-p t)
(defun karl-browse (a)
  "Wrapper, for new window use."
  (browse-url-netscape a t))
(setq browse-url-browser-function (function karl-browse))

> Wearing glasses for reading, I would realy find it a nice thing, that:
> -Certain header-texts -Quotes
> would have a slightly larger font. Were can I change this ?

;:*======================
;:* describe-face-at-point, a function to find out which face is which
(defun describe-face-at-point ()
  "Return face used at point."
  (interactive)
  (hyper-describe-face (get-char-property (point) 'face)))

And then do something like:
(FAQ) Q3.2.2: How do I set the text, menu and modeline fonts?
or
M-x customize RET faces RET

> X-Face How to install. Is there an already compiled version available?

;;*------------
;;* displaying XFaces (needs 48x48 xbm (use eg xv) and compface (from
;;* the aux dir of ftp.xemacs.org - cf. man compface
(defun xface-insert ()
  (nnheader-temp-write nil
    (insert-file-contents "~/.xface")
    (buffer-string)))
(require 'message)
(setq message-required-news-headers
      (nconc message-required-news-headers
             (list '(X-Face . xface-insert))))
(setq message-required-mail-headers
      (nconc message-required-mail-headers
             (list '(X-Face . xface-insert))))
-- 
Robin S. Socha  <http://socha.net/Gnus/>


      parent reply	other threads:[~1999-11-09 14:40 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1999-11-09  9:37 Pieter Wenk
1999-11-09 12:20 ` Kai Großjohann
1999-11-09 14:40 ` Robin S. Socha [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=deathsquad.m3g0yframy.fsf@socha.net \
    --to=robin@socha.net \
    --cc=ding@gnus.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).