Mercurial > vim
annotate runtime/indent/gitconfig.vim @ 8665:7a2346148551 v7.4.1622
commit https://github.com/vim/vim/commit/17b56c9f8327e6869580e3cfd82efcf8966d797a
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Mar 20 18:54:19 2016 +0100
patch 7.4.1622
Problem: Channel demo doesn't work with Python 2.6.
Solution: Add number in formatting placeholder
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 20 Mar 2016 19:00:06 +0100 |
parents | 2eb30f341e8d |
children | 43efa4f5a8ea |
rev | line source |
---|---|
1620 | 1 " Vim indent file |
2 " Language: git config file | |
2034 | 3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org> |
4681
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
3465
diff
changeset
|
4 " Last Change: 2013 May 30 |
1620 | 5 |
6 if exists("b:did_indent") | |
7 finish | |
8 endif | |
9 let b:did_indent = 1 | |
10 | |
11 setlocal autoindent | |
12 setlocal indentexpr=GetGitconfigIndent() | |
13 setlocal indentkeys=o,O,*<Return>,0[,],0;,0#,=,!^F | |
14 | |
3465 | 15 let b:undo_indent = 'setl ai< inde< indk<' |
16 | |
1620 | 17 " Only define the function once. |
18 if exists("*GetGitconfigIndent") | |
19 finish | |
20 endif | |
21 | |
22 function! GetGitconfigIndent() | |
2202 | 23 let line = getline(prevnonblank(v:lnum-1)) |
24 let cline = getline(v:lnum) | |
25 if line =~ '\\\@<!\%(\\\\\)*\\$' | |
26 " odd number of slashes, in a line continuation | |
27 return 2 * &sw | |
28 elseif cline =~ '^\s*\[' | |
29 return 0 | |
30 elseif cline =~ '^\s*\a' | |
31 return &sw | |
32 elseif cline == '' && line =~ '^\[' | |
33 return &sw | |
34 else | |
35 return -1 | |
36 endif | |
1620 | 37 endfunction |