2012-03-02 12:36:11 -05:00
|
|
|
"============================================================================
|
|
|
|
"File: mri.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_ruby_mri_checker")
|
|
|
|
finish
|
|
|
|
endif
|
2014-01-03 04:29:08 -05:00
|
|
|
let g:loaded_syntastic_ruby_mri_checker = 1
|
2013-02-21 10:50:41 -05:00
|
|
|
|
2014-01-03 04:29:08 -05:00
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
2014-06-24 12:02:42 -04:00
|
|
|
function! SyntaxCheckers_ruby_mri_IsAvailable() dict
|
|
|
|
if !exists('g:syntastic_ruby_mri_exec') && exists('g:syntastic_ruby_exec')
|
|
|
|
let g:syntastic_ruby_mri_exec = g:syntastic_ruby_exec
|
|
|
|
endif
|
|
|
|
return executable(self.getExec())
|
|
|
|
endfunction
|
|
|
|
|
2013-03-18 09:36:54 -04:00
|
|
|
function! SyntaxCheckers_ruby_mri_GetHighlightRegex(i)
|
2013-11-26 16:19:01 -05:00
|
|
|
if stridx(a:i['text'], 'assigned but unused variable') >= 0
|
2013-03-18 09:36:54 -04:00
|
|
|
let term = split(a:i['text'], ' - ')[1]
|
2014-03-09 16:21:29 -04:00
|
|
|
return '\V\<' . escape(term, '\') . '\>'
|
2013-03-18 09:36:54 -04:00
|
|
|
endif
|
|
|
|
|
|
|
|
return ''
|
|
|
|
endfunction
|
|
|
|
|
2013-10-28 07:53:33 -04:00
|
|
|
function! SyntaxCheckers_ruby_mri_GetLocList() dict
|
2014-07-07 12:04:22 -04:00
|
|
|
let makeprg = self.makeprgBuild({ 'args_after': '-w -T1 -c' })
|
2013-01-20 06:07:05 -05:00
|
|
|
|
2012-07-17 17:36:55 -04:00
|
|
|
"this is a hack to filter out a repeated useless warning in rspec files
|
|
|
|
"containing lines like
|
|
|
|
"
|
|
|
|
" foo.should == 'bar'
|
|
|
|
"
|
2012-07-19 06:10:05 -04:00
|
|
|
"Which always generate the warning below. Note that ruby >= 1.9.3 includes
|
|
|
|
"the word "possibly" in the warning
|
2014-09-16 11:12:50 -04:00
|
|
|
let errorformat = '%-G%\m%.%#warning: %\%%(possibly %\)%\?useless use of == in void context,'
|
2012-07-17 17:36:55 -04:00
|
|
|
|
ruby/mri: ignore efm lines that start ...
If the line a ruby error occurs on is 'too long' it will truncate the line it
displays in the error output and wrap it in `...`. This breaks %p from finding
the correct column so this patch ignores lines starting with `...`
e.g. %p working
```
ruby -w -T1 -c broken.rb
broken.rb:2: syntax error, unexpected tIDENTIFIER, expecting $end
puts sprintf "%d, %.2f, %.2f, %.2f, %d" k, v
^
```
%p not working
```
ruby -w -T1 -c broken.rb
broken.rb:2: syntax error, unexpected tIDENTIFIER, expecting $end
...tf "%d, %.2f, %.2f, %.2f, %d" k, v[:cost], v[:val], v[:carri...
... ^
```
2012-09-25 09:21:46 -04:00
|
|
|
" filter out lines starting with ...
|
|
|
|
" long lines are truncated and wrapped in ... %p then returns the wrong
|
|
|
|
" column offset
|
2013-05-14 12:36:20 -04:00
|
|
|
let errorformat .= '%-G%\%.%\%.%\%.%.%#,'
|
ruby/mri: ignore efm lines that start ...
If the line a ruby error occurs on is 'too long' it will truncate the line it
displays in the error output and wrap it in `...`. This breaks %p from finding
the correct column so this patch ignores lines starting with `...`
e.g. %p working
```
ruby -w -T1 -c broken.rb
broken.rb:2: syntax error, unexpected tIDENTIFIER, expecting $end
puts sprintf "%d, %.2f, %.2f, %.2f, %d" k, v
^
```
%p not working
```
ruby -w -T1 -c broken.rb
broken.rb:2: syntax error, unexpected tIDENTIFIER, expecting $end
...tf "%d, %.2f, %.2f, %.2f, %d" k, v[:cost], v[:val], v[:carri...
... ^
```
2012-09-25 09:21:46 -04:00
|
|
|
|
2013-05-14 12:36:20 -04:00
|
|
|
let errorformat .=
|
|
|
|
\ '%-GSyntax OK,'.
|
|
|
|
\ '%E%f:%l: syntax error\, %m,'.
|
|
|
|
\ '%Z%p^,'.
|
|
|
|
\ '%W%f:%l: warning: %m,'.
|
|
|
|
\ '%Z%p^,'.
|
|
|
|
\ '%W%f:%l: %m,'.
|
|
|
|
\ '%-C%.%#'
|
2013-05-31 14:05:45 -04:00
|
|
|
|
2014-07-07 12:04:22 -04:00
|
|
|
let env = syntastic#util#isRunningWindows() ? {} : { 'RUBYOPT': '' }
|
|
|
|
|
2013-05-31 14:05:45 -04:00
|
|
|
return SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
2014-07-07 12:04:22 -04:00
|
|
|
\ 'errorformat': errorformat,
|
|
|
|
\ 'env': env })
|
2012-03-02 12:36:11 -05:00
|
|
|
endfunction
|
2013-01-27 15:08:30 -05:00
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'ruby',
|
2013-10-28 11:30:25 -04:00
|
|
|
\ 'name': 'mri',
|
|
|
|
\ 'exec': 'ruby'})
|
2014-01-03 04:29:08 -05:00
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
|
|
|
" vim: set et sts=4 sw=4:
|