mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07:00
38 lines
679 B
VimL
38 lines
679 B
VimL
|
" Vim indent file
|
||
|
" Language: XFree86 Configuration File
|
||
|
" Maintainer: Nikolai Weibull <now@bitwi.se>
|
||
|
" Latest Revision: 2006-12-20
|
||
|
|
||
|
if exists("b:did_indent")
|
||
|
finish
|
||
|
endif
|
||
|
let b:did_indent = 1
|
||
|
|
||
|
setlocal indentexpr=GetXF86ConfIndent()
|
||
|
setlocal indentkeys=!^F,o,O,=End
|
||
|
setlocal nosmartindent
|
||
|
|
||
|
if exists("*GetXF86ConfIndent")
|
||
|
finish
|
||
|
endif
|
||
|
|
||
|
function GetXF86ConfIndent()
|
||
|
let lnum = prevnonblank(v:lnum - 1)
|
||
|
|
||
|
if lnum == 0
|
||
|
return 0
|
||
|
endif
|
||
|
|
||
|
let ind = indent(lnum)
|
||
|
|
||
|
if getline(lnum) =~? '^\s*\(Sub\)\=Section\>'
|
||
|
let ind = ind + &sw
|
||
|
endif
|
||
|
|
||
|
if getline(v:lnum) =~? '^\s*End\(Sub\)\=Section\>'
|
||
|
let ind = ind - &sw
|
||
|
endif
|
||
|
|
||
|
return ind
|
||
|
endfunction
|