]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
after/ftplugin/mail: Try to clean up mails.
authorSimon Ruderich <simon@ruderich.org>
Mon, 1 Jun 2009 14:21:07 +0000 (16:21 +0200)
committerSimon Ruderich <simon@ruderich.org>
Mon, 1 Jun 2009 14:21:07 +0000 (16:21 +0200)
vim/after/ftplugin/mail.vim

index 5129509b9a572633c69cb0853e4be0db375816c5..3005e25332f509ece6bf16c556c21ad534661f0a 100644 (file)
@@ -6,3 +6,14 @@
 
 " Use only 65 characters per line as given in rfc1855.
 setlocal textwidth=65
+
+" Replace trailing spaces except after mail headers (To:, etc.) or a signature
+" delimiter (-- ).
+silent! %s/\(^\([a-zA-z-]\+:\|--\)\)\@<!\s\+$//
+" Remove spaces between quotes (> > to >>).
+silent! %s/^\(>\+\) >/\1>/g
+silent! %s/^\(>\+\) >/\1>/g
+
+" Move directly after the headers.
+normal gg
+normal }