12 lines
293 B
VimL
Raw Normal View History

2012-12-10 14:29:53 -05:00
function! GetJavaIndent_improved()
let theIndent = GetJavaIndent()
let lnum = prevnonblank(v:lnum - 1)
let line = getline(lnum)
2019-10-24 13:27:01 -07:00
if line =~? '^\s*@.*$'
2012-12-10 14:29:53 -05:00
let theIndent = indent(lnum)
endif
return theIndent
endfunction
setlocal indentexpr=GetJavaIndent_improved()