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/cpp.vim | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'vim/after/ftplugin/cpp.vim') diff --git a/vim/after/ftplugin/cpp.vim b/vim/after/ftplugin/cpp.vim index 9a58cfa5..a826bf43 100644 --- a/vim/after/ftplugin/cpp.vim +++ b/vim/after/ftplugin/cpp.vim @@ -1,11 +1,9 @@ " Extra configuration for C++ files -if &filetype != 'cpp' || &compatible || v:version < 700 +if &filetype !=# 'cpp' || v:version < 700 finish endif " Set comment formats setlocal include=^\\s*#\\s*include setlocal path+=/usr/include -let b:undo_ftplugin = b:undo_ftplugin - \ . '|setlocal include<' - \ . '|setlocal path<' +let b:undo_ftplugin .= '|setlocal include< path<' -- cgit v1.2.3