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/awk.vim | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'vim/after/ftplugin/awk.vim') diff --git a/vim/after/ftplugin/awk.vim b/vim/after/ftplugin/awk.vim index 42b3e1db..6a8ac1ac 100644 --- a/vim/after/ftplugin/awk.vim +++ b/vim/after/ftplugin/awk.vim @@ -1,11 +1,9 @@ " Extra configuration for AWK scripts -if &filetype != 'awk' || &compatible || v:version < 700 +if &filetype !=# 'awk' || v:version < 700 finish endif " Set comment formats setlocal comments=:# setlocal formatoptions+=or -let b:undo_ftplugin = b:undo_ftplugin - \ . '|setlocal comments<' - \ . '|setlocal formatoptions<' +let b:undo_ftplugin .= '|setlocal comments< formatoptions' -- cgit v1.2.3