2011-12-28 22:12:45 +01:00
|
|
|
"============================================================================
|
|
|
|
"File: haxe.vim
|
|
|
|
"Description: Syntax checking plugin for syntastic.vim
|
2011-12-28 22:19:12 +01:00
|
|
|
"Maintainer: David Bernard <david.bernard.31 at gmail dot com>
|
2011-12-28 22:12:45 +01: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 15:50:41 +00:00
|
|
|
if exists("g:loaded_syntastic_haxe_haxe_checker")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let g:loaded_syntastic_haxe_haxe_checker=1
|
|
|
|
|
2013-01-27 20:08:30 +00:00
|
|
|
function! SyntaxCheckers_haxe_haxe_IsAvailable()
|
|
|
|
return executable('haxe')
|
|
|
|
endfunction
|
2011-12-28 22:12:45 +01:00
|
|
|
|
2013-07-01 10:37:52 +03:00
|
|
|
" start in directory a:where and walk up the parent folders until it
|
|
|
|
" finds a file matching a:what; return path to that file
|
|
|
|
function! s:FindInParent(what, where)
|
|
|
|
let here = fnamemodify(a:where, ':p')
|
|
|
|
|
|
|
|
while !empty(here)
|
|
|
|
let p = split(globpath(here, a:what), '\n')
|
|
|
|
|
|
|
|
if !empty(p)
|
|
|
|
return fnamemodify(p[0], ':p')
|
|
|
|
elseif here == '/'
|
2012-01-06 18:14:43 +00:00
|
|
|
break
|
|
|
|
endif
|
2013-07-01 10:37:52 +03:00
|
|
|
|
|
|
|
" we use ':h:h' rather than ':h' since ':p' adds a trailing '/'
|
|
|
|
" if 'here' is a directory
|
|
|
|
let here = fnamemodify(here, ':p:h:h')
|
2012-01-06 18:14:43 +00:00
|
|
|
endwhile
|
2013-07-01 10:37:52 +03:00
|
|
|
|
|
|
|
return ''
|
2011-12-28 22:12:45 +01:00
|
|
|
endfunction
|
|
|
|
|
2013-01-27 20:08:30 +00:00
|
|
|
function! SyntaxCheckers_haxe_haxe_GetLocList()
|
2013-07-01 10:37:52 +03:00
|
|
|
let hxml = exists('b:vaxe_hxml') ? fnamemodify(b:vaxe_hxml, ':p') : s:FindInParent('*.hxml', expand('%:p:h'))
|
|
|
|
|
|
|
|
if !empty(hxml)
|
2013-06-11 21:36:44 +03:00
|
|
|
let makeprg = syntastic#makeprg#build({
|
|
|
|
\ 'exe': 'haxe',
|
2013-07-01 10:37:52 +03:00
|
|
|
\ 'fname': shellescape(fnameescape(fnamemodify(hxml, ':t'))),
|
2013-06-11 21:36:44 +03:00
|
|
|
\ 'filetype': 'haxe',
|
|
|
|
\ 'subchecker': 'haxe' })
|
|
|
|
|
2012-01-06 18:14:43 +00:00
|
|
|
let errorformat = '%E%f:%l: characters %c-%*[0-9] : %m'
|
2013-06-11 21:36:44 +03:00
|
|
|
|
|
|
|
return SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
2013-07-01 10:37:52 +03:00
|
|
|
\ 'cwd': fnamemodify(hxml, ':h') })
|
2011-12-28 22:12:45 +01:00
|
|
|
endif
|
2013-07-01 10:37:52 +03:00
|
|
|
|
|
|
|
return []
|
2011-12-28 22:12:45 +01:00
|
|
|
endfunction
|
2013-01-27 20:08:30 +00:00
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'haxe',
|
|
|
|
\ 'name': 'haxe'})
|