|
From: | Yuri D'Elia |
Subject: | Re: Reply to self behavior |
Date: | Sun, 02 Jan 2011 12:32:31 +0100 |
User-agent: | Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) |
Yuri D'Elia <wavexx@users.sf.net> writes: > >>>> (_real_format=flowed support anyone? it's supported since 199? in >>>> outlook) >>> >>> What doesn't work? And what is format=flowed? Why would you want it? >> >> format=flowed encodes hard-newlines in the message, while still wrapping >> the source of the message to 80 columns. This allow compliant readers to >> either show the wrapped text or flow the content to the window's >> margins. > > In what way doesn't format=flowed work in Gnus? I think that was
implemented at least a decade ago, but it may have bitrotted inthe mean > time... After reading the sources, I was able to achieve flowed zenity with the following:
(setq fill-flowed-display-column nil) (add-hook 'message-mode-hook (lambda () (turn-off-auto-fill) (setq truncate-lines nil) (use-hard-newlines))) (add-hook 'gnus-article-mode-hook (lambda () (setq truncate-lines nil))) My only complaint is that `use-hard-newlines' shouldn't be necessary. Any line longer than `fill-flowed-encode-column' should trigger a format=flowed message automatically instead of generating a warning.
[Prev in Thread] | Current Thread | [Next in Thread] |