aboutsummaryrefslogblamecommitdiff
path: root/vim/compiler/vint.vim
blob: 35819ae368d4a6c563ab80f7c2121a70ddee79e6 (plain) (tree)
1
2
3
4
5
6
7
8
9
                             

        
                                




                                              

                                                                          

                                              
                                   
    
                                 
     
                                     
if exists('current_compiler')
  finish
endif
let current_compiler = 'vimlint'

if exists(':CompilerSet') != 2
  command -nargs=* CompilerSet setlocal <args>
endif

" 7.4.191 is the earliest version with the :S file name modifier, which we
" really should use if we can
if v:version >= 704
      \ || v:version == 704 && has('patch191')
  CompilerSet makeprg=vint\ --\ %:S
else
  CompilerSet makeprg=vint\ --\ %
endif
CompilerSet errorformat=%f:%l:%c:\ %m