Re: Mutt, Emacs and message-mode
Sébastien Hinderer <[email protected]> Tue, 9 Dec 2025 10:58:39 +0100
| Newsgroups | gmane.mail.mutt.user |
|---|---|
| Message-ID | <[email protected]> |
Hey Robert, Many thanks for your message! > I solved this with the following line in my Emacs configuration: > > (setq mail-header-separator "") Yes I did consider this solution but I did not dare to adopt it so far because I was worried that I may break something else. > Maybe this works for you as well? > > I also have this: > > ;; move cursor after header lines > (add-hook 'message-mode-hook 'forward-paragraph) Well I think that's the equivalent of my hook calling message-goto-body which, to be honest, I prefer because I find it more semantic than expressing things in terms of paragraphs even if I agree that in practiceit does the same thing. It's also more fragile because if for any reason the separator would be different from "" then your forward-paragraph would stop working, whereas goto-body will work as it knows how to handle both the separator and an empty line. Best wishes, Seb.