ats-vim/syntax_checkers/ats/patscc.vim

30 lines
834 B
VimL
Raw Permalink Normal View History

2017-12-23 16:16:43 -05:00
if exists('g:loaded_syntastic_ats_patscc_checker')
finish
endif
let g:loaded_syntastic_ats_patscc_checker = 1
let g:syntastic_ats_patscc_exec = 'patscc'
2017-12-29 11:29:02 -05:00
" TODO optionally include -ccats flag for quicker response
2017-12-23 16:16:43 -05:00
function! SyntaxCheckers_ats_patscc_GetLocList() dict
let makeprg = self.makeprgBuild({
\ 'exe': self.getExec(),
2017-12-25 13:28:39 -05:00
\ 'args': '-DATS_MEMALLOC_LIBC -cleanaft -o /tmp/patscc-vim',
2017-12-23 16:16:43 -05:00
\ 'fname': shellescape(expand('%') )})
2017-12-23 17:15:39 -05:00
let errorformat =
\ 'exit(ATS):%m,' .
2017-12-23 20:52:41 -05:00
\ '%f:\ %\d%#(line=%l\,\ offs=%c) --%m'
2017-12-23 16:16:43 -05:00
let loclist = SyntasticMake({
\ 'makeprg': makeprg,
\ 'errorformat': errorformat })
2017-12-23 17:29:14 -05:00
return loclist
2017-12-23 16:30:27 -05:00
2017-12-23 16:16:43 -05:00
endfunction
call g:SyntasticRegistry.CreateAndRegisterChecker({
\ 'filetype': 'ats',
2017-12-23 17:42:58 -05:00
\ 'name': 'patscc' })