2009-07-11 03:11:31 -04:00
|
|
|
"============================================================================
|
2013-07-24 16:01:57 -04:00
|
|
|
"File: ruby.vim
|
2009-07-11 03:11:31 -04:00
|
|
|
"Description: Syntax checking plugin for syntastic.vim
|
2009-12-16 05:02:36 -05:00
|
|
|
"Maintainer: Martin Grenfell <martin.grenfell at gmail dot com>
|
2009-07-11 03:11:31 -04: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.
|
|
|
|
"
|
|
|
|
"============================================================================
|
2009-07-11 03:09:20 -04:00
|
|
|
|
2013-02-21 10:50:41 -05:00
|
|
|
if exists("g:loaded_syntastic_eruby_ruby_checker")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let g:loaded_syntastic_eruby_ruby_checker=1
|
|
|
|
|
2013-08-01 06:40:29 -04:00
|
|
|
if !exists("g:syntastic_erb_exec")
|
|
|
|
let g:syntastic_erb_exec = "erb"
|
|
|
|
endif
|
|
|
|
|
2012-09-24 22:34:14 -04:00
|
|
|
if !exists("g:syntastic_ruby_exec")
|
|
|
|
let g:syntastic_ruby_exec = "ruby"
|
|
|
|
endif
|
|
|
|
|
2013-01-27 15:08:30 -05:00
|
|
|
function! SyntaxCheckers_eruby_ruby_IsAvailable()
|
2013-08-01 06:40:29 -04:00
|
|
|
return executable(expand(g:syntastic_erb_exec)) && executable(expand(g:syntastic_ruby_exec))
|
2013-01-27 15:08:30 -05:00
|
|
|
endfunction
|
|
|
|
|
2013-08-01 06:40:29 -04:00
|
|
|
function! SyntaxCheckers_eruby_ruby_Preprocess(errors)
|
|
|
|
let out = copy(a:errors)
|
|
|
|
for n in range(len(out))
|
|
|
|
let out[n] = substitute(out[n], '\V<%=', '<%', 'g')
|
|
|
|
endfor
|
|
|
|
return out
|
|
|
|
endfunction
|
2013-06-12 01:00:27 -04:00
|
|
|
|
2013-08-01 06:40:29 -04:00
|
|
|
function! SyntaxCheckers_eruby_ruby_GetLocList()
|
|
|
|
" TODO: do something about the encoding
|
|
|
|
let makeprg = syntastic#makeprg#build({
|
|
|
|
\ 'exe': expand(g:syntastic_erb_exec),
|
|
|
|
\ 'args': '-x -T -',
|
|
|
|
\ 'tail': ' | ' . expand(g:syntastic_ruby_exec) . ' -c',
|
|
|
|
\ 'filetype': 'eruby',
|
|
|
|
\ 'subchecker': 'ruby' })
|
2012-09-24 22:34:14 -04:00
|
|
|
|
2013-05-14 12:36:20 -04:00
|
|
|
let errorformat =
|
|
|
|
\ '%-GSyntax OK,'.
|
|
|
|
\ '%E-:%l: syntax error\, %m,%Z%p^,'.
|
|
|
|
\ '%W-:%l: warning: %m,'.
|
|
|
|
\ '%Z%p^,'.
|
|
|
|
\ '%-C%.%#'
|
2009-07-11 03:09:20 -04:00
|
|
|
|
2013-06-08 14:08:45 -04:00
|
|
|
return SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
2013-08-01 06:40:29 -04:00
|
|
|
\ 'preprocess': 'SyntaxCheckers_eruby_ruby_Preprocess',
|
2013-06-08 14:08:45 -04:00
|
|
|
\ 'defaults': { 'bufnr': bufnr(""), 'vcol': 1 } })
|
2009-07-11 03:09:20 -04:00
|
|
|
endfunction
|
2013-01-27 15:08:30 -05:00
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
2013-01-30 12:03:36 -05:00
|
|
|
\ 'filetype': 'eruby',
|
2013-01-27 15:08:30 -05:00
|
|
|
\ 'name': 'ruby'})
|