gnu.emacs.gnus
  Home FAQ Contact Sign in
gnu.emacs.gnus only
 
Advanced search
December 2008
motuwethfrsasuw
1234567 49
891011121314 50
15161718192021 51
22232425262728 52
293031     1
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007 2006  
total
gnu.emacs.gnus Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  Re: Feature Request: Message-elide-region showing lines snipped and taking a string         


Author:
Date: Dec 25, 2008 05:32

On Thu, Dec 25 2008, Sivaram Neelakantan wrote:
> The key C-c C-e currently elides a region of text and produces the
> following

[snipped 6 lines, 73 chars]
> Ideally, [...] or [snipped x lines] can be made default with the
> option of the user being able to change the text.

How about the following?

(setq message-elide-ellipsis "\n[snipped %%l lines, %%c chars]\n\n")

(defun rs-message-elide-region (b e)
"Elide the text in the region.
An ellipsis (from `message-elide-ellipsis') will be inserted where the
text was killed."
(interactive "r")
(let ((lines (count-lines b e))
(chars (- e b)))
(kill-region b e)
(insert (format-spec message-elide-ellipsis
`((?l . ,lines)
(?c . ,chars))))))
Show full article (0.84Kb)
1 Comment
  Canada lesbian couple         


Author: margaritorica
Date: Dec 25, 2008 04:36

couple de lesbienne cherche sex occasionnelle femme seulement
http://canada-lesbi.blogbugs.org/
no comments
  Re: More than one IMAP mailbox on the same server         


Author: CHENG Gao
Date: Dec 25, 2008 00:21

*On Sun, 19 Oct 2008 13:34:59 -0400
* Also sprach victor@algebraic.org (Victor S. Miller):
> I have two different IMAP mailboxes on the same server. How do I set
> up my .gnus and .authinfo to handle them. From reading the
> documentation it appears that gnus seems keyed on the server alone and
> not the server/mailbox pair. Please correct me if I'm wrong.
>
> Victor

You can use labels.

in .gnus
Show full article (0.99Kb)
2 Comments