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.
|
|
|
|
"
|
|
|
|
"============================================================================
|
|
|
|
|
2013-02-21 10:50:41 -05:00
|
|
|
if exists("g:loaded_syntastic_haxe_haxe_checker")
|
|
|
|
finish
|
|
|
|
endif
|
2014-01-03 04:29:08 -05:00
|
|
|
let g:loaded_syntastic_haxe_haxe_checker = 1
|
|
|
|
|
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
2013-02-21 10:50:41 -05:00
|
|
|
|
2013-10-28 07:53:33 -04:00
|
|
|
function! SyntaxCheckers_haxe_haxe_GetLocList() dict
|
2013-07-01 11:14:15 -04:00
|
|
|
if exists('b:vaxe_hxml')
|
|
|
|
let hxml = b:vaxe_hxml
|
|
|
|
elseif exists('g:vaxe_hxml')
|
|
|
|
let hxml = g:vaxe_hxml
|
|
|
|
else
|
2013-07-05 17:12:06 -04:00
|
|
|
let hxml = syntastic#util#findInParent('*.hxml', expand('%:p:h'))
|
2013-07-01 11:14:15 -04:00
|
|
|
endif
|
|
|
|
let hxml = fnamemodify(hxml, ':p')
|
2013-07-01 03:37:52 -04:00
|
|
|
|
|
|
|
if !empty(hxml)
|
2013-11-01 05:51:47 -04:00
|
|
|
let makeprg = self.makeprgBuild({
|
|
|
|
\ 'fname': syntastic#util#shescape(fnameescape(fnamemodify(hxml, ':t'))) })
|
2013-06-11 14:36:44 -04:00
|
|
|
|
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
|
2013-01-27 15:08:30 -05:00
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'haxe',
|
|
|
|
\ 'name': 'haxe'})
|
2014-01-03 04:29:08 -05:00
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
|
|
|
" vim: set et sts=4 sw=4:
|