summaryrefslogtreecommitdiff
path: root/runtime/indent/xf86conf.vim
blob: f9db1ba965f02fbbde7f3aa3991557cca68fe7e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
" Vim indent file
" Language:	    XFree86 Configuration File
" Maintainer:	    Nikolai Weibull <source@pcppopper.org>
" URL:		    http://www.pcppopper.org/vim/indent/pcp/xf86conf/
" Latest Revision:  2004-04-25
" arch-tag:	    8a42f7b6-5088-49cf-b15b-07696a91c015

" Only load this indent file when no other was loaded.
if exists("b:did_indent")
  finish
endif

let b:did_indent = 1

setlocal indentexpr=GetXF86ConfIndent()
setlocal indentkeys=!^F,o,O,=End

" Only define the function once.
if exists("*GetXF86ConfIndent")
  finish
endif

function GetXF86ConfIndent()
  let lnum = prevnonblank(v:lnum - 1)

  if lnum == 0
    return 0
  endif

  let ind = indent(lnum)
  let line = getline(lnum)

  if line =~? '^\s*\(Sub\)\=Section'
    let ind = ind + &sw
  elseif getline(v:lnum) =~? '^\s*End'
    let ind = ind - &sw
  endif

  return ind
endfunction

" vim: set sts=2 sw=2: