2012-07-30 16:06:42 -04:00
|
|
|
"============================================================================
|
|
|
|
"File: co.vim
|
|
|
|
"Description: Syntax checking plugin for syntastic.vim
|
|
|
|
"Maintainer: Andrew Kelley <superjoe30@gmail.com>
|
|
|
|
"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.
|
|
|
|
"
|
|
|
|
"============================================================================
|
2014-01-03 04:29:08 -05:00
|
|
|
|
2013-02-21 10:50:41 -05:00
|
|
|
if exists("g:loaded_syntastic_co_coco_checker")
|
|
|
|
finish
|
|
|
|
endif
|
2014-01-03 04:29:08 -05:00
|
|
|
let g:loaded_syntastic_co_coco_checker = 1
|
2012-07-30 16:06:42 -04:00
|
|
|
|
2014-01-03 04:29:08 -05:00
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
2012-07-30 16:06:42 -04:00
|
|
|
|
2013-10-28 07:53:33 -04:00
|
|
|
function! SyntaxCheckers_co_coco_GetLocList() dict
|
2014-10-02 03:05:24 -04:00
|
|
|
let tmpdir = syntastic#util#tmpdir()
|
2014-06-24 12:02:42 -04:00
|
|
|
let makeprg = self.makeprgBuild({ 'args_after': '-c -o ' . tmpdir })
|
2013-05-31 14:05:45 -04:00
|
|
|
|
2013-05-14 12:36:20 -04:00
|
|
|
let errorformat =
|
|
|
|
\ '%EFailed at: %f,' .
|
|
|
|
\ '%ZSyntax%trror: %m on line %l,'.
|
|
|
|
\ '%EFailed at: %f,'.
|
|
|
|
\ '%Z%trror: Parse error on line %l: %m'
|
2012-07-30 16:06:42 -04:00
|
|
|
|
2014-10-02 03:05:24 -04:00
|
|
|
let loclist = SyntasticMake({
|
2014-01-03 04:29:08 -05:00
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat })
|
2014-10-02 03:05:24 -04:00
|
|
|
|
2014-10-02 13:05:01 -04:00
|
|
|
call syntastic#util#rmrf(tmpdir)
|
2014-10-02 03:05:24 -04:00
|
|
|
|
|
|
|
return loclist
|
2012-07-30 16:06:42 -04:00
|
|
|
endfunction
|
2013-01-27 15:08:30 -05:00
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'co',
|
|
|
|
\ 'name': 'coco'})
|
2014-01-03 04:29:08 -05:00
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
|
|
|
" vim: set et sts=4 sw=4:
|