2014-07-10 21:05:51 -07:00
|
|
|
" Vim indent file
|
|
|
|
" Language: Vim script
|
|
|
|
" Maintainer: Bram Moolenaar <Bram@vim.org>
|
2015-01-20 07:04:55 -07:00
|
|
|
" Last Change: 2014 Sep 19
|
2014-07-10 21:05:51 -07:00
|
|
|
|
|
|
|
" Only load this indent file when no other was loaded.
|
|
|
|
if exists("b:did_indent")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let b:did_indent = 1
|
|
|
|
|
|
|
|
setlocal indentexpr=GetVimIndent()
|
|
|
|
setlocal indentkeys+==end,=else,=cat,=fina,=END,0\\
|
|
|
|
|
|
|
|
let b:undo_indent = "setl indentkeys< indentexpr<"
|
|
|
|
|
|
|
|
" Only define the function once.
|
|
|
|
if exists("*GetVimIndent")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let s:keepcpo= &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
|
|
|
function GetVimIndent()
|
|
|
|
let ignorecase_save = &ignorecase
|
|
|
|
try
|
|
|
|
let &ignorecase = 0
|
|
|
|
return GetVimIndentIntern()
|
|
|
|
finally
|
|
|
|
let &ignorecase = ignorecase_save
|
|
|
|
endtry
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
function GetVimIndentIntern()
|
|
|
|
" Find a non-blank line above the current line.
|
|
|
|
let lnum = prevnonblank(v:lnum - 1)
|
|
|
|
|
|
|
|
" If the current line doesn't start with '\' and below a line that starts
|
|
|
|
" with '\', use the indent of the line above it.
|
2015-01-20 07:04:55 -07:00
|
|
|
let cur_text = getline(v:lnum)
|
|
|
|
if cur_text !~ '^\s*\\'
|
2014-07-10 21:05:51 -07:00
|
|
|
while lnum > 0 && getline(lnum) =~ '^\s*\\'
|
|
|
|
let lnum = lnum - 1
|
|
|
|
endwhile
|
|
|
|
endif
|
|
|
|
|
|
|
|
" At the start of the file use zero indent.
|
|
|
|
if lnum == 0
|
|
|
|
return 0
|
|
|
|
endif
|
2015-01-20 07:04:55 -07:00
|
|
|
let prev_text = getline(lnum)
|
2014-07-10 21:05:51 -07:00
|
|
|
|
|
|
|
" Add a 'shiftwidth' after :if, :while, :try, :catch, :finally, :function
|
|
|
|
" and :else. Add it three times for a line that starts with '\' after
|
|
|
|
" a line that doesn't (or g:vim_indent_cont if it exists).
|
|
|
|
let ind = indent(lnum)
|
2015-01-20 07:04:55 -07:00
|
|
|
if cur_text =~ '^\s*\\' && v:lnum > 1 && prev_text !~ '^\s*\\'
|
2014-07-10 21:05:51 -07:00
|
|
|
if exists("g:vim_indent_cont")
|
|
|
|
let ind = ind + g:vim_indent_cont
|
|
|
|
else
|
|
|
|
let ind = ind + &sw * 3
|
|
|
|
endif
|
2015-01-20 07:04:55 -07:00
|
|
|
elseif prev_text =~ '^\s*aug\%[roup]' && prev_text !~ '^\s*aug\%[roup]\s*!\=\s\+END'
|
2014-07-10 21:05:51 -07:00
|
|
|
let ind = ind + &sw
|
|
|
|
else
|
2015-01-20 07:04:55 -07:00
|
|
|
" A line starting with :au does not increment/decrement indent.
|
|
|
|
if prev_text !~ '^\s*au\%[tocmd]'
|
|
|
|
let i = match(prev_text, '\(^\||\)\s*\(if\|wh\%[ile]\|for\|try\|cat\%[ch]\|fina\%[lly]\|fu\%[nction]\|el\%[seif]\)\>')
|
|
|
|
if i >= 0
|
|
|
|
let ind += &sw
|
|
|
|
if strpart(prev_text, i, 1) == '|' && has('syntax_items')
|
|
|
|
\ && synIDattr(synID(lnum, i, 1), "name") =~ '\(Comment\|String\)$'
|
|
|
|
let ind -= &sw
|
|
|
|
endif
|
2014-07-10 21:05:51 -07:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
" If the previous line contains an "end" after a pipe, but not in an ":au"
|
|
|
|
" command. And not when there is a backslash before the pipe.
|
|
|
|
" And when syntax HL is enabled avoid a match inside a string.
|
2015-01-20 07:04:55 -07:00
|
|
|
let i = match(prev_text, '[^\\]|\s*\(ene\@!\)')
|
|
|
|
if i > 0 && prev_text !~ '^\s*au\%[tocmd]'
|
2014-07-10 21:05:51 -07:00
|
|
|
if !has('syntax_items') || synIDattr(synID(lnum, i + 2, 1), "name") !~ '\(Comment\|String\)$'
|
|
|
|
let ind = ind - &sw
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
" Subtract a 'shiftwidth' on a :endif, :endwhile, :catch, :finally, :endtry,
|
|
|
|
" :endfun, :else and :augroup END.
|
2015-01-20 07:04:55 -07:00
|
|
|
if cur_text =~ '^\s*\(ene\@!\|cat\|fina\|el\|aug\%[roup]\s*!\=\s\+END\)'
|
2014-07-10 21:05:51 -07:00
|
|
|
let ind = ind - &sw
|
|
|
|
endif
|
|
|
|
|
|
|
|
return ind
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
let &cpo = s:keepcpo
|
|
|
|
unlet s:keepcpo
|
|
|
|
|
|
|
|
" vim:sw=2
|