comparison runtime/compiler/rspec.vim @ 4869:a5352e73dc00

Update runtime files.
author Bram Moolenaar <bram@vim.org>
date Wed, 12 Jun 2013 21:29:15 +0200
parents dd5c1983e355
children 43efa4f5a8ea
comparison
equal deleted inserted replaced
4868:f2f15e432db6 4869:a5352e73dc00
1 " Vim compiler file 1 " Vim compiler file
2 " Language: RSpec 2 " Language: RSpec
3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org> 3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org>
4 " Last Change: 2009 Dec 22 4 " URL: https://github.com/vim-ruby/vim-ruby
5 " URL: http://vim-ruby.rubyforge.org
6 " Anon CVS: See above site
7 " Release Coordinator: Doug Kearns <dougkearns@gmail.com> 5 " Release Coordinator: Doug Kearns <dougkearns@gmail.com>
8 6
9 if exists("current_compiler") 7 if exists("current_compiler")
10 finish 8 finish
11 endif 9 endif
16 endif 14 endif
17 15
18 let s:cpo_save = &cpo 16 let s:cpo_save = &cpo
19 set cpo-=C 17 set cpo-=C
20 18
21 CompilerSet makeprg=spec 19 CompilerSet makeprg=rspec
22 20
23 CompilerSet errorformat= 21 CompilerSet errorformat=
24 \%+W'%.%#'\ FAILED, 22 \%f:%l:\ %tarning:\ %m,
25 \%+I'%.%#'\ FIXED,
26 \%-Cexpected:%.%#,
27 \%-C\ \ \ \ \ got:%.%#,
28 \%E%.%#:in\ `load':\ %f:%l:%m, 23 \%E%.%#:in\ `load':\ %f:%l:%m,
29 \%C%f:%l:, 24 \%E%f:%l:in\ `%*[^']':\ %m,
30 \%W%f:%l:\ warning:\ %m, 25 \%-Z\ \ \ \ \ \#\ %f:%l:%.%#,
31 \%E%f:%l:in\ %*[^:]:\ %m, 26 \%E\ \ %\\d%\\+)%.%#,
32 \%E%f:%l:\ %m, 27 \%C\ \ \ \ \ %m,
33 \%-Z%\tfrom\ %f:%l,
34 \%-Z%p^%.%#,
35 \%-C%.%#,
36 \%-G%.%# 28 \%-G%.%#
37 29
38 let &cpo = s:cpo_save 30 let &cpo = s:cpo_save
39 unlet s:cpo_save 31 unlet s:cpo_save
40 32