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/help.vim | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'vim/after/ftplugin/help.vim') diff --git a/vim/after/ftplugin/help.vim b/vim/after/ftplugin/help.vim index 3d9ad072..eb5cea64 100644 --- a/vim/after/ftplugin/help.vim +++ b/vim/after/ftplugin/help.vim @@ -1,5 +1,5 @@ " Extra configuration for Vim help files -if &filetype != 'help' || &compatible || v:version < 700 +if &filetype !=# 'help' || v:version < 700 finish endif @@ -7,6 +7,5 @@ endif " reading it; don't conceal characters if &modifiable && !&readonly setlocal conceallevel=0 - let b:undo_ftplugin = b:undo_ftplugin - \ . '|setlocal conceallevel' + let b:undo_ftplugin .= '|setlocal conceallevel<' endif -- cgit v1.2.3