syntastic/syntax_checkers/haxe/haxe.vim

53 lines
1.8 KiB
VimL
Raw Normal View History

2011-12-28 16:12:45 -05:00
"============================================================================
"File: haxe.vim
"Description: Syntax checking plugin for syntastic.vim
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.
"
"============================================================================
if exists("g:loaded_syntastic_haxe_haxe_checker")
finish
endif
let g:loaded_syntastic_haxe_haxe_checker=1
function! SyntaxCheckers_haxe_haxe_IsAvailable()
return executable('haxe')
endfunction
2011-12-28 16:12:45 -05:00
function! SyntaxCheckers_haxe_haxe_GetLocList()
if exists('b:vaxe_hxml')
let hxml = b:vaxe_hxml
elseif exists('g:vaxe_hxml')
let hxml = g:vaxe_hxml
else
let hxml = syntastic#util#findInParent('*.hxml', expand('%:p:h'))
endif
let hxml = fnamemodify(hxml, ':p')
2013-07-01 03:37:52 -04:00
if !empty(hxml)
2013-06-11 14:36:44 -04:00
let makeprg = syntastic#makeprg#build({
\ 'exe': 'haxe',
\ 'fname': syntastic#util#shescape(fnameescape(fnamemodify(hxml, ':t'))),
2013-06-11 14:36:44 -04:00
\ 'filetype': 'haxe',
\ 'subchecker': 'haxe' })
2012-01-06 13:14:43 -05:00
let errorformat = '%E%f:%l: characters %c-%*[0-9] : %m'
2013-06-11 14:36:44 -04:00
return SyntasticMake({
\ 'makeprg': makeprg,
\ 'errorformat': errorformat,
2013-07-01 03:37:52 -04:00
\ 'cwd': fnamemodify(hxml, ':h') })
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'})