aboutsummaryrefslogtreecommitdiff
path: root/vim/compiler/vint.vim
blob: 8cd35cf1f69354cf920ffc92476e0f00818a7679 (plain) (blame)
1
2
3
4
5
6
7
8
9
" :compiler support for Vim script linting with Vint
" <https://github.com/Kuniwak/vint>
if exists('current_compiler') || &compatible || v:version < 800
  finish
endif
let current_compiler = 'vimlint'

CompilerSet makeprg=vint\ --\ %:S
CompilerSet errorformat=%f:%l:%c:\ %m