vim-polyglot/indent/dart.vim

40 lines
801 B
VimL
Raw Normal View History

2015-12-06 05:38:02 -05:00
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'dart') == -1
if exists('b:did_indent')
finish
endif
let b:did_indent = 1
setlocal cindent
setlocal cinoptions+=j1,J1
2016-12-20 14:57:20 -05:00
setlocal indentexpr=DartIndent()
2015-12-06 05:38:02 -05:00
let b:undo_indent = 'setl cin< cino<'
2016-12-20 14:57:20 -05:00
if exists("*DartIndent")
finish
endif
function! DartIndent()
" Default to cindent in most cases
let indentTo = cindent(v:lnum)
let previousLine = getline(prevnonblank(v:lnum - 1))
let currentLine = getline(v:lnum)
" Don't indent after an annotation
if previousLine =~# '^\s*@.*$'
let indentTo = indent(v:lnum - 1)
endif
" Indent after opening List literal
if previousLine =~# '\[$' && !(currentLine =~# '^\s*\]')
let indentTo = indent(v:lnum - 1) + &shiftwidth
endif
return indentTo
endfunction
2015-12-06 05:38:02 -05:00
endif