blob: 35a4372e39e969035597c44af52a907183584499 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
if exists('current_compiler')
finish
endif
let g:current_compiler = 'vimlint'
if exists(':CompilerSet') != 2
command -nargs=* CompilerSet setlocal <args>
endif
CompilerSet makeprg=vint\ %:S
CompilerSet errorformat=%f:%l:%c:\ %m
|