mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-11 13:03:50 -05:00
40 lines
1.0 KiB
VimL
40 lines
1.0 KiB
VimL
let files = filter(globpath(&rtp, 'ftplugin/dart.vim', 1, 1), { _, v -> v !~ "vim-polyglot" && v !~ $VIMRUNTIME && v !~ "after" })
|
|
if len(files) > 0
|
|
exec 'source ' . files[0]
|
|
finish
|
|
endif
|
|
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'dart') == -1
|
|
|
|
if exists('b:did_ftplugin')
|
|
finish
|
|
endif
|
|
let b:did_ftplugin = 1
|
|
|
|
" Enable automatic indentation (2 spaces) if variable g:dart_style_guide is set
|
|
if exists('g:dart_style_guide')
|
|
setlocal expandtab
|
|
setlocal shiftwidth=2
|
|
setlocal softtabstop=2
|
|
|
|
setlocal formatoptions-=t
|
|
endif
|
|
|
|
" Set 'comments' to format dashed lists in comments.
|
|
setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:///,://
|
|
|
|
setlocal commentstring=//%s
|
|
let s:win_sep = (has('win32') || has('win64')) ? '/' : ''
|
|
let &l:errorformat =
|
|
\ join([
|
|
\ ' %#''file://' . s:win_sep . '%f'': %s: line %l pos %c:%m',
|
|
\ '%m'
|
|
\ ], ',')
|
|
|
|
setlocal includeexpr=dart#resolveUri(v:fname)
|
|
setlocal isfname+=:
|
|
setlocal iskeyword+=$
|
|
|
|
let b:undo_ftplugin = 'setl et< fo< sw< sts< com< cms< inex< isf<'
|
|
|
|
endif
|