2011-12-28 22:12:45 +01:00
|
|
|
"============================================================================
|
|
|
|
"File: haxe.vim
|
2017-09-15 21:04:16 +03:00
|
|
|
"Description: Syntax checking plugin for syntastic
|
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.
|
|
|
|
"
|
|
|
|
"============================================================================
|
|
|
|
|
2015-03-25 18:44:34 +02:00
|
|
|
if exists('g:loaded_syntastic_haxe_haxe_checker')
|
2013-02-21 15:50:41 +00:00
|
|
|
finish
|
|
|
|
endif
|
2014-01-03 11:29:08 +02:00
|
|
|
let g:loaded_syntastic_haxe_haxe_checker = 1
|
|
|
|
|
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
2013-02-21 15:50:41 +00:00
|
|
|
|
2013-10-28 13:53:33 +02:00
|
|
|
function! SyntaxCheckers_haxe_haxe_GetLocList() dict
|
2017-02-15 08:48:45 +02: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'))
|
2013-07-01 18:14:15 +03:00
|
|
|
endif
|
|
|
|
let hxml = fnamemodify(hxml, ':p')
|
2013-07-01 10:37:52 +03:00
|
|
|
|
2014-10-06 22:15:44 +03:00
|
|
|
call self.log('hxml =', hxml)
|
|
|
|
|
2015-03-25 18:44:34 +02:00
|
|
|
if hxml !=# ''
|
2013-11-01 11:51:47 +02:00
|
|
|
let makeprg = self.makeprgBuild({
|
2017-02-07 07:41:40 +02:00
|
|
|
\ 'fname': syntastic#util#shescape(fnamemodify(hxml, ':t')),
|
2017-01-26 18:38:54 -08:00
|
|
|
\ 'args_after' : ['--no-output'] })
|
2013-06-11 21:36:44 +03:00
|
|
|
|
2017-02-07 07:41:40 +02:00
|
|
|
let errorformat =
|
|
|
|
\ '%W%f:%l: characters %c-%n : Warning : %m,' .
|
2017-02-06 14:54:35 -08:00
|
|
|
\ '%E%f:%l: characters %c-%n : %m'
|
2013-06-11 21:36:44 +03:00
|
|
|
|
2014-02-02 11:11:06 +02:00
|
|
|
let loclist = SyntasticMake({
|
2013-06-11 21:36:44 +03:00
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
2013-07-01 10:37:52 +03:00
|
|
|
\ 'cwd': fnamemodify(hxml, ':h') })
|
2014-02-02 11:11:06 +02:00
|
|
|
|
|
|
|
for e in loclist
|
2014-06-30 14:45:30 +03:00
|
|
|
let e['hl'] = '\%>' . e['col'] . 'c\%<' . (e['nr'] + 1) . 'c'
|
2014-02-02 11:11:06 +02:00
|
|
|
let e['col'] += 1
|
|
|
|
let e['nr'] = 0
|
|
|
|
endfor
|
|
|
|
|
|
|
|
return loclist
|
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'})
|
2014-01-03 11:29:08 +02:00
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
2015-01-04 12:46:54 +02:00
|
|
|
" vim: set sw=4 sts=4 et fdm=marker:
|