2012-03-02 17:36:11 +00:00
|
|
|
"============================================================================
|
|
|
|
"File: mri.vim
|
2017-09-15 21:04:16 +03:00
|
|
|
"Description: Syntax checking plugin for syntastic
|
2012-03-02 17:36:11 +00:00
|
|
|
"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 15:50:41 +00:00
|
|
|
|
2015-03-25 18:44:34 +02:00
|
|
|
if exists('g:loaded_syntastic_ruby_mri_checker')
|
2013-02-21 15:50:41 +00:00
|
|
|
finish
|
|
|
|
endif
|
2014-01-03 11:29:08 +02:00
|
|
|
let g:loaded_syntastic_ruby_mri_checker = 1
|
2013-02-21 15:50:41 +00:00
|
|
|
|
2014-01-03 11:29:08 +02:00
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
2014-06-24 19:02:42 +03: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
|
2014-10-06 22:15:44 +03:00
|
|
|
call self.log('g:syntastic_ruby_exec =', g:syntastic_ruby_exec)
|
2014-06-24 19:02:42 +03:00
|
|
|
endif
|
|
|
|
return executable(self.getExec())
|
|
|
|
endfunction
|
|
|
|
|
2013-03-18 13:36:54 +00:00
|
|
|
function! SyntaxCheckers_ruby_mri_GetHighlightRegex(i)
|
2013-11-26 23:19:01 +02:00
|
|
|
if stridx(a:i['text'], 'assigned but unused variable') >= 0
|
2013-03-18 13:36:54 +00:00
|
|
|
let term = split(a:i['text'], ' - ')[1]
|
2014-03-09 22:21:29 +02:00
|
|
|
return '\V\<' . escape(term, '\') . '\>'
|
2013-03-18 13:36:54 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
return ''
|
|
|
|
endfunction
|
|
|
|
|
2013-10-28 13:53:33 +02:00
|
|
|
function! SyntaxCheckers_ruby_mri_GetLocList() dict
|
2015-03-08 08:27:28 +02:00
|
|
|
let makeprg = self.makeprgBuild({
|
|
|
|
\ 'args': '-w -T1',
|
|
|
|
\ 'args_after': '-c' })
|
2013-01-20 11:07:05 +00:00
|
|
|
|
2012-07-17 22:36:55 +01:00
|
|
|
"this is a hack to filter out a repeated useless warning in rspec files
|
|
|
|
"containing lines like
|
|
|
|
"
|
|
|
|
" foo.should == 'bar'
|
|
|
|
"
|
2012-07-19 11:10:05 +01:00
|
|
|
"Which always generate the warning below. Note that ruby >= 1.9.3 includes
|
|
|
|
"the word "possibly" in the warning
|
2014-09-16 18:12:50 +03:00
|
|
|
let errorformat = '%-G%\m%.%#warning: %\%%(possibly %\)%\?useless use of == in void context,'
|
2012-07-17 22:36:55 +01: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 14:21:46 +01:00
|
|
|
" filter out lines starting with ...
|
|
|
|
" long lines are truncated and wrapped in ... %p then returns the wrong
|
|
|
|
" column offset
|
2013-05-14 17:36:20 +01: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 14:21:46 +01:00
|
|
|
|
2013-05-14 17:36:20 +01: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 21:05:45 +03:00
|
|
|
|
2014-07-07 19:04:22 +03:00
|
|
|
let env = syntastic#util#isRunningWindows() ? {} : { 'RUBYOPT': '' }
|
|
|
|
|
2013-05-31 21:05:45 +03:00
|
|
|
return SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
2014-07-07 19:04:22 +03:00
|
|
|
\ 'errorformat': errorformat,
|
|
|
|
\ 'env': env })
|
2012-03-02 17:36:11 +00:00
|
|
|
endfunction
|
2013-01-27 20:08:30 +00:00
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'ruby',
|
2013-10-28 17:30:25 +02:00
|
|
|
\ 'name': 'mri',
|
|
|
|
\ 'exec': 'ruby'})
|
2014-01-03 11:29:08 +02:00
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
2015-01-04 12:46:54 +02:00
|
|
|
" vim: set sw=4 sts=4 et fdm=marker:
|