On Mon, Jan 24 2011, Philipp Haselwarter wrote: > "G" == Gary <[email protected]> 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. _______________________________________________ info-gnus-english mailing list [email protected] http://lists.gnu.org/mailman/listinfo/info-gnus-english
