2015-07-13 06:22:46 -04:00
|
|
|
if exists("b:did_indent")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
|
|
|
runtime! indent/html.vim
|
2016-02-20 08:13:10 -05:00
|
|
|
|
|
|
|
" Indent Golang HTML templates
|
|
|
|
setlocal indentexpr=GetGoHTMLTmplIndent(v:lnum)
|
|
|
|
setlocal indentkeys+==else,=end
|
|
|
|
|
|
|
|
" Only define the function once.
|
|
|
|
if exists("*GetGoHTMLTmplIndent")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
|
|
|
function! GetGoHTMLTmplIndent(lnum)
|
|
|
|
" Get HTML indent
|
|
|
|
if exists('*HtmlIndent')
|
|
|
|
let ind = HtmlIndent()
|
|
|
|
else
|
|
|
|
let ind = HtmlIndentGet(a:lnum)
|
|
|
|
endif
|
|
|
|
|
|
|
|
" The value of a single shift-width
|
|
|
|
if exists('*shiftwidth')
|
|
|
|
let sw = shiftwidth()
|
|
|
|
else
|
|
|
|
let sw = &sw
|
|
|
|
endif
|
|
|
|
|
|
|
|
" If need to indent based on last line
|
|
|
|
let last_line = getline(a:lnum-1)
|
2016-12-27 09:46:49 -05:00
|
|
|
if last_line =~ '^\s*{{-\=\s*\%(if\|else\|range\|with\|define\|block\).*}}'
|
2016-02-20 08:13:10 -05:00
|
|
|
let ind += sw
|
|
|
|
endif
|
|
|
|
|
|
|
|
" End of FuncMap block
|
|
|
|
let current_line = getline(a:lnum)
|
2016-12-27 09:46:49 -05:00
|
|
|
if current_line =~ '^\s*{{-\=\s*\%(else\|end\).*}}'
|
2016-02-20 08:13:10 -05:00
|
|
|
let ind -= sw
|
|
|
|
endif
|
|
|
|
|
|
|
|
return ind
|
|
|
|
endfunction
|
2016-06-26 07:12:36 -04:00
|
|
|
|
|
|
|
" vim: sw=2 ts=2 et
|