..
2022-02-05 15:39:19 -05:00
2024-11-20 13:29:44 +00:00
2022-02-05 15:39:19 -05:00
2024-09-17 11:26:33 +00:00
2022-02-05 15:39:19 -05:00
2024-09-14 19:53:07 +00:00
2024-09-14 19:53:07 +00:00
2024-11-20 13:29:44 +00:00
2024-09-17 11:26:33 +00:00

Set LANG to something other than "en_*" if you want to keep the original
design, quoted-printable encoding, instead of this repository's preference, 
format=flowed. The patched mmime.c is best accompanied by adjustments in
your editor to ensure that trailing whitespace is in the right place. For
example, in ~/.vimrc:

function! FixIndented()
	" remove spaces at end of indented lines
	silent! %s/^\s.*\zs \+$//
endfunction

function! TextFlowed()
	setl tw=72
	setl fo+=w
	setl nojs
	setl nosmartindent
	setl list
	set listchars=trail:•
endfunction

autocmd BufRead,BufNewFile */sent/cur/* call TextFlowed()
autocmd BufRead,BufWritePre */sent/cur/* call FixIndented()