diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-04-13 23:04:47 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-04-13 23:04:47 +0200 |
commit | 53bfca22f1f67934defa5f9c62ae5a6d5cf9f198 (patch) | |
tree | 99509c9b58f5f10912f19b8179c4743d4c205835 /runtime/indent | |
parent | 09210ac93cacd4552593604066a86b2e7036a636 (diff) | |
download | vim-53bfca22f1f67934defa5f9c62ae5a6d5cf9f198.zip |
Updated runtime files.
Diffstat (limited to 'runtime/indent')
-rw-r--r-- | runtime/indent/gitconfig.vim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/indent/gitconfig.vim b/runtime/indent/gitconfig.vim index fa57e56ab..8eece5d30 100644 --- a/runtime/indent/gitconfig.vim +++ b/runtime/indent/gitconfig.vim @@ -1,7 +1,7 @@ " Vim indent file " Language: git config file " Maintainer: Tim Pope <vimNOSPAM@tpope.org> -" Last Change: 2010 May 21 +" Last Change: 2012 April 7 if exists("b:did_indent") finish @@ -12,6 +12,8 @@ setlocal autoindent setlocal indentexpr=GetGitconfigIndent() setlocal indentkeys=o,O,*<Return>,0[,],0;,0#,=,!^F +let b:undo_indent = 'setl ai< inde< indk<' + " Only define the function once. if exists("*GetGitconfigIndent") finish |