2012-09-21 06:33:21 -04:00
|
|
|
"============================================================================
|
|
|
|
"File: slim.vim
|
|
|
|
"Description: Syntax checking plugin for syntastic.vim
|
|
|
|
"Maintainer: Martin Grenfell <martin.grenfell at gmail dot 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.
|
|
|
|
"
|
|
|
|
"============================================================================
|
|
|
|
|
2013-02-21 10:50:41 -05:00
|
|
|
if exists("g:loaded_syntastic_slim_slimrb_checker")
|
|
|
|
finish
|
|
|
|
endif
|
2014-01-03 04:29:08 -05:00
|
|
|
let g:loaded_syntastic_slim_slimrb_checker = 1
|
|
|
|
|
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
2013-02-21 10:50:41 -05:00
|
|
|
|
2012-09-22 15:00:12 -04:00
|
|
|
function! s:SlimrbVersion()
|
|
|
|
if !exists('s:slimrb_version')
|
2013-09-24 01:39:07 -04:00
|
|
|
let s:slimrb_version = syntastic#util#getVersion('slimrb --version 2>' . syntastic#util#DevNull())
|
2013-09-27 03:35:46 -04:00
|
|
|
endif
|
2012-09-22 15:00:12 -04:00
|
|
|
return s:slimrb_version
|
|
|
|
endfunction
|
|
|
|
|
2013-10-28 07:53:33 -04:00
|
|
|
function! SyntaxCheckers_slim_slimrb_GetLocList() dict
|
2014-01-28 14:44:44 -05:00
|
|
|
let makeprg = self.makeprgBuild({ 'args_after': '-c' })
|
2013-05-31 14:05:45 -04:00
|
|
|
|
2013-03-08 11:58:49 -05:00
|
|
|
if syntastic#util#versionIsAtLeast(s:SlimrbVersion(), [1,3,1])
|
2013-05-14 12:36:20 -04:00
|
|
|
let errorformat =
|
|
|
|
\ '%C\ %#%f\, Line %l\, Column %c,'.
|
|
|
|
\ '%-G\ %.%#,'.
|
|
|
|
\ '%ESlim::Parser::SyntaxError: %m,'.
|
|
|
|
\ '%+C%.%#'
|
2012-09-22 15:00:12 -04:00
|
|
|
else
|
2013-05-14 12:36:20 -04:00
|
|
|
let errorformat =
|
|
|
|
\ '%C\ %#%f\, Line %l,'.
|
|
|
|
\ '%-G\ %.%#,'.
|
|
|
|
\ '%ESlim::Parser::SyntaxError: %m,'.
|
|
|
|
\ '%+C%.%#'
|
2012-09-22 15:00:12 -04:00
|
|
|
endif
|
2013-05-31 14:05:45 -04:00
|
|
|
|
|
|
|
return SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat })
|
2012-09-21 06:33:21 -04:00
|
|
|
endfunction
|
2013-01-27 15:08:30 -05:00
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'slim',
|
|
|
|
\ 'name': 'slimrb'})
|
2014-01-03 04:29:08 -05:00
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
|
|
|
" vim: set et sts=4 sw=4:
|