syntastic/syntax_checkers/haxe/haxe.vim

65 lines
2.0 KiB
VimL
Raw Normal View History

2011-12-28 16:12:45 -05:00
"============================================================================
"File: haxe.vim
2017-09-15 14:04:16 -04:00
"Description: Syntax checking plugin for syntastic
2011-12-28 16:19:12 -05:00
"Maintainer: David Bernard <david.bernard.31 at gmail dot com>
2011-12-28 16:12:45 -05:00
"License: This program is free software. It comes without any warranty,
" to the extent permitted by applicable law. You can redistribute
" it and/or modify it under the terms of the Do What The Fuck You
" Want To Public License, Version 2, as published by Sam Hocevar.
" See http://sam.zoy.org/wtfpl/COPYING for more details.
"
"============================================================================
2015-03-25 12:44:34 -04:00
if exists('g:loaded_syntastic_haxe_haxe_checker')
finish
endif
let g:loaded_syntastic_haxe_haxe_checker = 1
let s:save_cpo = &cpo
set cpo&vim
function! SyntaxCheckers_haxe_haxe_GetLocList() dict
2017-02-15 01:48:45 -05:00
let buf = bufnr('')
let hxml = syntastic#util#bufRawVar(buf, 'vaxe_hxml')
if hxml ==# ''
let hxml = syntastic#util#findGlobInParent('*.hxml', fnamemodify(bufname(buf), ':p:h'))
endif
let hxml = fnamemodify(hxml, ':p')
2013-07-01 03:37:52 -04:00
call self.log('hxml =', hxml)
2015-03-25 12:44:34 -04:00
if hxml !=# ''
let makeprg = self.makeprgBuild({
2017-02-07 00:41:40 -05:00
\ 'fname': syntastic#util#shescape(fnamemodify(hxml, ':t')),
\ 'args_after' : ['--no-output'] })
2013-06-11 14:36:44 -04:00
2017-02-07 00:41:40 -05:00
let errorformat =
\ '%W%f:%l: characters %c-%n : Warning : %m,' .
\ '%E%f:%l: characters %c-%n : %m'
2013-06-11 14:36:44 -04:00
2014-02-02 04:11:06 -05:00
let loclist = SyntasticMake({
2013-06-11 14:36:44 -04:00
\ 'makeprg': makeprg,
\ 'errorformat': errorformat,
2013-07-01 03:37:52 -04:00
\ 'cwd': fnamemodify(hxml, ':h') })
2014-02-02 04:11:06 -05:00
for e in loclist
2014-06-30 07:45:30 -04:00
let e['hl'] = '\%>' . e['col'] . 'c\%<' . (e['nr'] + 1) . 'c'
2014-02-02 04:11:06 -05:00
let e['col'] += 1
let e['nr'] = 0
endfor
return loclist
2011-12-28 16:12:45 -05:00
endif
2013-07-01 03:37:52 -04:00
return []
2011-12-28 16:12:45 -05:00
endfunction
call g:SyntasticRegistry.CreateAndRegisterChecker({
\ 'filetype': 'haxe',
\ 'name': 'haxe'})
let &cpo = s:save_cpo
unlet s:save_cpo
2015-01-04 05:46:54 -05:00
" vim: set sw=4 sts=4 et fdm=marker: