[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: citation line above or below body?
From: |
Eric Abrahamsen |
Subject: |
Re: citation line above or below body? |
Date: |
Tue, 25 Jan 2011 00:26:44 -0500 |
User-agent: |
Gnus/5.110011 (No Gnus v0.11) Emacs/23.2 (gnu/linux) |
On Mon, Jan 24 2011, Philipp Haselwarter wrote:
> "G" == Gary <gnus@garydjones.name> writes:
>
> G> Philipp Haselwarter wrote:
>
>>> "G" == Gary writes:
>>>
> G> Eric Abrahamsen wrote:
>>>
>>>>> When I reply to messages and cite the original, point ends up below
>>>>> the citation line. This leads to weird threads, where my text ends
>>>>> up right below the "so-and-so wrote:" line
>>>
> G> What do you mean? That you then type where the cursor is? You can
> G> always move it down, you know :) In fact I would encourage you to do
> G> so.
>>>
>>> That's the point. Moving down manually every time is a bit of a pain
>>> if you just want to quote and start typing.
>
> G> Gnus isn't psychic.
>
> disagreed, sir ;)
>
> When you're using supercite, it's no big deal:
>
> (defun my-mv-pre-sign ()
> (when (message-mail-p)
> (message-goto-signature)
> (previous-line 3)))
For what it's worth, I ended up with this:
--8<---------------cut here---------------start------------->8---
(setq message-citation-line-function 'my-insert-citation-line)
(defun my-insert-citation-line ()
(message-insert-formatted-citation-line)
(when (message-mail-p)
(delete-backward-char 1)
(previous-line)
(open-line 2)))
--8<---------------cut here---------------end--------------->8---
So far, it has worked psychically.
Re: citation line above or below body?, Reiner Steib, 2011/01/22
Message not available