Gnus development mailing list
 help / color / mirror / Atom feed
From: Russ Allbery <rra@stanford.edu>
Cc: John Moreno <phenix@interpath.com>,
	Karl-Johan Noren <k-j-nore@dsv.su.se>
Subject: Re: [John Moreno <phenix@interpath.com>] Re: GNKSA and Gnus
Date: 04 Jan 1998 13:31:23 -0800	[thread overview]
Message-ID: <m3lnwwudsk.fsf@windlord.Stanford.EDU> (raw)
In-Reply-To: Kai Grossjohann's message of 04 Jan 1998 20:55:26 +0100

Kai Grossjohann <grossjohann@charly.cs.uni-dortmund.de> writes:

> Maybe they're talking about digests?  I found the feature of TM to be
> able to hit "a" (or was it "f") on the header line of a submessage quite
> useful.  It was a MIME multipart message with a message/rfc822 part, I
> think, where I found that useful.

Hmm.  Okay.  I can buy this, although I encounter very, very few digests.
They're common in some varieties of mailing list, but pretty uncommon on
Usenet overall (although admittedly I have seen them).  Most of what I see
on Usenet in digest format are FAQs.

> As the evaluation form doesn't really say, and I like to see the good
> things in people... :-)

Right.  :)

> I would like to see the signature omitting stuff, though.

So would I, although I don't really need it.  Following is a bit of elisp
code I wrote that has been referred to by at least one friend of mine as
"the best reason to switch to using emacs to post and send mail that I've
seen."  :)

;; Delete anything between the current point and the signature (defined as
;; the block starting with "-- " at the beginning of a line.  *Extremely*
;; useful for killing quoted text.
(define-key message-mode-map "\C-cz" 'rra-kill-to-signature)
(defun rra-kill-to-signature ()
  "Deletes all text up to the signature."
  (interactive)
  (save-excursion
    (push-mark (point) t t)
    (re-search-forward "^-- ")
    (forward-line -1)
    (kill-region (mark) (point))))

-- 
Russ Allbery (rra@stanford.edu)         <URL:http://www.eyrie.org/~eagle/>


  reply	other threads:[~1998-01-04 21:31 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1998-01-04 11:02 Lars Magne Ingebrigtsen
1998-01-04 10:54 ` Russ Allbery
1998-01-04 18:07   ` Karl Kleinpaste
1998-01-04 19:55   ` Kai Grossjohann
1998-01-04 21:31     ` Russ Allbery [this message]
1998-01-05  4:11       ` Lars Magne Ingebrigtsen
1998-01-05  4:44         ` kill-to-signature (was GNKSA and Gnus) Russ Allbery
1998-01-06  6:34           ` Lars Magne Ingebrigtsen
1998-01-04 20:31 [John Moreno <phenix@interpath.com>] Re: GNKSA and Gnus John Moreno
1998-01-04 21:45 ` Russ Allbery
1998-01-04 21:45 John Moreno
1998-01-04 21:53 ` Kai Grossjohann
1998-01-04 22:04 John Moreno
1998-01-04 22:27 John Moreno
1998-01-05  3:55 John Moreno
1998-01-06  7:07 John Moreno

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=m3lnwwudsk.fsf@windlord.Stanford.EDU \
    --to=rra@stanford.edu \
    --cc=k-j-nore@dsv.su.se \
    --cc=phenix@interpath.com \
    /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).