aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/gitcommit.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-12 01:20:13 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-12 01:20:13 +1200
commite3cfbf8e680aae93fcb778a77c20247570453c8c (patch)
tree63631f2ea936b6e92db315e99031fde422f5d727 /vim/after/ftplugin/gitcommit.vim
parentMerge branch 'release/v1.25.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-e3cfbf8e680aae93fcb778a77c20247570453c8c.tar.gz
dotfiles-e3cfbf8e680aae93fcb778a77c20247570453c8c.zip
Merge branch 'release/v1.26.0'v1.26.0
* release/v1.26.0: Bump VERSION Upgrade insert_cancel.vim again Check for +conceal before setting 'conceallevel' Upgrade insert_cancel.vim Remove session_lazy.vim Add missing dot to mutt filetype.vim path Add session_lazy.vim plugin Add 'sessionoptions' settings Correct login around ftplugin/make.vim mappings Move after/ftplugin/sed.vim to ftplugin/sed.vim Clean up existing ftplugins a bit Overhaul after/ftplugin Add explicit group to ftdetect rule Move angle-bracket matchpairs to Perl filetype
Diffstat (limited to 'vim/after/ftplugin/gitcommit.vim')
-rw-r--r--vim/after/ftplugin/gitcommit.vim6
1 files changed, 2 insertions, 4 deletions
diff --git a/vim/after/ftplugin/gitcommit.vim b/vim/after/ftplugin/gitcommit.vim
index e55ebff7..8e365d98 100644
--- a/vim/after/ftplugin/gitcommit.vim
+++ b/vim/after/ftplugin/gitcommit.vim
@@ -1,11 +1,9 @@
" Extra configuration for Git commit messages
-if &filetype != 'gitcommit' || &compatible || v:version < 700
+if &filetype !=# 'gitcommit' || v:version < 700
finish
endif
" Make angle brackets behave like mail quotes
setlocal comments+=n:>
setlocal formatoptions+=coqr
-let b:undo_ftplugin = b:undo_ftplugin
- \ . '|setlocal comments<'
- \ . '|setlocal formatoptions<'
+let b:undo_ftplugin .= '|setlocal comments< formatoptions<'