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
|
|
|
|
let g:loaded_syntastic_slim_slimrb_checker=1
|
|
|
|
|
2013-01-27 15:08:30 -05:00
|
|
|
function! SyntaxCheckers_slim_slimrb_IsAvailable()
|
|
|
|
return executable("slimrb")
|
|
|
|
endfunction
|
2012-09-21 06:33:21 -04:00
|
|
|
|
2012-09-22 15:00:12 -04:00
|
|
|
function! s:SlimrbVersion()
|
|
|
|
if !exists('s:slimrb_version')
|
2013-06-07 13:56:39 -04:00
|
|
|
let s:slimrb_version = syntastic#util#parseVersion('slimrb --version 2>' . syntastic#util#DevNull())
|
2012-09-22 15:00:12 -04:00
|
|
|
end
|
|
|
|
return s:slimrb_version
|
|
|
|
endfunction
|
|
|
|
|
2013-01-27 15:08:30 -05:00
|
|
|
function! SyntaxCheckers_slim_slimrb_GetLocList()
|
2013-01-20 06:07:05 -05:00
|
|
|
let makeprg = syntastic#makeprg#build({
|
2013-05-29 02:55:42 -04:00
|
|
|
\ 'exe': 'slimrb',
|
|
|
|
\ 'args': '-c',
|
2013-05-31 14:05:45 -04:00
|
|
|
\ 'filetype': 'slim',
|
2013-05-29 02:55:42 -04:00
|
|
|
\ 'subchecker': 'slimrb' })
|
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'})
|