From 10c601851625784c7058f52c8d88bdb2e99b5620 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 8 Jul 2018 23:13:02 +1200 Subject: Overhaul base after-ftplugins Mostly to simplify them--remove a lot of the load-guard cruft. --- vim/after/ftplugin/gitcommit.vim | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) (limited to 'vim/after/ftplugin/gitcommit.vim') diff --git a/vim/after/ftplugin/gitcommit.vim b/vim/after/ftplugin/gitcommit.vim index d903e84e..035b835c 100644 --- a/vim/after/ftplugin/gitcommit.vim +++ b/vim/after/ftplugin/gitcommit.vim @@ -1,19 +1,15 @@ -" Extra configuration for 'gitcommit' filetypes -if exists('b:did_ftplugin_after') || &compatible +" Extra configuration for Git commit messages +if &filetype != 'gitcommit' || &compatible || v:version < 700 finish endif -if v:version < 700 - finish -endif -if &filetype !=# 'gitcommit' - finish -endif -let b:did_ftplugin_after = 1 -let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:did_ftplugin_after' " Make angle brackets behave like mail quotes setlocal comments+=n:> setlocal formatoptions+=coqr -let b:undo_ftplugin = b:undo_ftplugin - \ . '|setlocal comments< formatoptions<' + +" Add to undo script +if exists('b:undo_ftplugin') + let b:undo_ftplugin = b:undo_ftplugin + \ . '|setlocal comments<' + \ . '|setlocal formatoptions<' +endif -- cgit v1.2.3