We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34b2ae3 commit 8c151f6Copy full SHA for 8c151f6
autoload/rails.vim
@@ -1390,6 +1390,8 @@ function! s:readable_default_rake_task(...) dict abort
1390
endif
1391
if empty(test)
1392
return '--tasks'
1393
+ elseif test =~# '^test\>' && self.app().has('rails5')
1394
+ return 'test '.s:rquote(with_line)
1395
elseif test =~# '^test\>'
1396
let opts = ''
1397
if test ==# self.name()
compiler/rails.vim
@@ -33,6 +33,7 @@ CompilerSet errorformat^=
33
\%\\&%\\s\ %#%m%\\>\ \ %#%f,
34
\Overwrite%.%#%\\S%\\+\ \ %#%m%\\x1b[0m\ \ %#%f,
35
\%-GOverwrite%.%#\"h\"%.%#,
36
+ \%.%#rails\ test\ %f:%l,
37
\%+GCurrent\ version:%.%#,
38
\%+G\ %#Status\ %#Migration\ ID%.%#,
39
\%+G\ The\ fixture\ ID\ for\ %.%#,
0 commit comments