diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-06-01 14:50:56 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-06-01 14:50:56 +0200 |
commit | 543b7ef7000d08d77409478315d68b607bb8bad8 (patch) | |
tree | 387cd45294ce55a130556d4e22a0b7706156b1fd /runtime/ftplugin/gitcommit.vim | |
parent | 3737fc1c30a559c82c57b5ce6aedae76cbeabaef (diff) | |
download | vim-git-543b7ef7000d08d77409478315d68b607bb8bad8.tar.gz |
Updated runtime files and translations.
Diffstat (limited to 'runtime/ftplugin/gitcommit.vim')
-rw-r--r-- | runtime/ftplugin/gitcommit.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/ftplugin/gitcommit.vim b/runtime/ftplugin/gitcommit.vim index 86ee5222e..e8619004b 100644 --- a/runtime/ftplugin/gitcommit.vim +++ b/runtime/ftplugin/gitcommit.vim @@ -1,7 +1,7 @@ " Vim filetype plugin " Language: git commit file " Maintainer: Tim Pope <vimNOSPAM@tpope.org> -" Last Change: 2012 April 7 +" Last Change: 2013 May 30 " Only do this when not done yet for this buffer if (exists("b:did_ftplugin")) @@ -11,9 +11,9 @@ endif runtime! ftplugin/git.vim let b:did_ftplugin = 1 -setlocal nomodeline +setlocal nomodeline tabstop=8 formatoptions-=croq formatoptions+=tl -let b:undo_ftplugin = 'setl modeline<' +let b:undo_ftplugin = 'setl modeline< tabstop< formatoptions<' if &textwidth == 0 " make sure that log messages play nice with git-log on standard terminals |