1
0
Fork 0
mirror of https://github.com/vim/vim synced 2025-03-21 17:25:11 +01:00
vim/runtime/compiler/rspec.vim

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
774 B
VimL
Raw Normal View History

2008-07-13 17:41:49 +00:00
" Vim compiler file
" Language: RSpec
2010-05-28 20:54:39 +02:00
" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
2013-06-12 21:29:15 +02:00
" URL: https://github.com/vim-ruby/vim-ruby
2008-07-13 17:41:49 +00:00
" Release Coordinator: Doug Kearns <dougkearns@gmail.com>
2019-01-17 16:07:22 +01:00
" Last Change: 2018 Aug 07
" 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
2008-07-13 17:41:49 +00:00
if exists("current_compiler")
finish
endif
let current_compiler = "rspec"
let s:cpo_save = &cpo
set cpo-=C
2013-06-12 21:29:15 +02:00
CompilerSet makeprg=rspec
2008-07-13 17:41:49 +00:00
CompilerSet errorformat=
2013-06-12 21:29:15 +02:00
\%f:%l:\ %tarning:\ %m,
2008-07-13 17:41:49 +00:00
\%E%.%#:in\ `load':\ %f:%l:%m,
2013-06-12 21:29:15 +02:00
\%E%f:%l:in\ `%*[^']':\ %m,
\%-Z\ \ \ \ \ %\\+\#\ %f:%l:%.%#,
2019-01-17 16:07:22 +01:00
\%E\ \ \ \ \ Failure/Error:\ %m,
\%E\ \ \ \ \ Failure/Error:,
2013-06-12 21:29:15 +02:00
\%C\ \ \ \ \ %m,
\%C%\\s%#,
2008-07-13 17:41:49 +00:00
\%-G%.%#
let &cpo = s:cpo_save
unlet s:cpo_save
" vim: nowrap sw=2 sts=2 ts=8: