From f36ef6745c3c96914eb7be228125c1d53bf70287 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 10 Jul 2018 01:55:15 +1200 Subject: Overhaul after/ftplugin Use .= operator to append to b:undo_ftplugin, as we're requiring Vim 7.0 or later everywhere here anyway. Also remove &compatible where we don't need line breaks. --- vim/after/ftplugin/mail.vim | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'vim/after/ftplugin/mail.vim') diff --git a/vim/after/ftplugin/mail.vim b/vim/after/ftplugin/mail.vim index 200358d8..3ecc0310 100644 --- a/vim/after/ftplugin/mail.vim +++ b/vim/after/ftplugin/mail.vim @@ -1,9 +1,8 @@ " Extra configuration for mail messages -if &filetype != 'mail' || &compatible || v:version < 700 +if &filetype !=# 'mail' || v:version < 700 finish endif " Add a space to the end of wrapped lines for format-flowed mail setlocal formatoptions+=w -let b:undo_ftplugin = b:undo_ftplugin - \ . '|setlocal formatoptions<' +let b:undo_ftplugin .= '|setlocal formatoptions<' -- cgit v1.2.3