blob: 8490f2a9e98f8f7ff4333af9fb56cd5a00c2c309 [file] [log] [blame]
Bram Moolenaarec7944a2013-06-12 21:29:15 +02001" Vim compiler file
2" Language: Rake
3" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
4" URL: https://github.com/vim-ruby/vim-ruby
5" Release Coordinator: Doug Kearns <dougkearns@gmail.com>
6
7if exists("current_compiler")
8 finish
9endif
10let current_compiler = "rake"
11
12if exists(":CompilerSet") != 2 " older Vim always used :setlocal
13 command -nargs=* CompilerSet setlocal <args>
14endif
15
16let s:cpo_save = &cpo
17set cpo-=C
18
19CompilerSet makeprg=rake
20
21CompilerSet errorformat=
22 \%D(in\ %f),
23 \%\\s%#from\ %f:%l:%m,
24 \%\\s%#from\ %f:%l:,
25 \%\\s%##\ %f:%l:%m,
26 \%\\s%##\ %f:%l,
27 \%\\s%#[%f:%l:\ %#%m,
28 \%\\s%#%f:%l:\ %#%m,
29 \%\\s%#%f:%l:,
Bram Moolenaar89bcfda2016-08-30 23:26:57 +020030 \%m\ [%f:%l]:,
31 \%+Erake\ aborted!,
32 \%+EDon't\ know\ how\ to\ build\ task\ %.%#,
33 \%+Einvalid\ option:%.%#,
34 \%+Irake\ %\\S%\\+%\\s%\\+#\ %.%#
Bram Moolenaarec7944a2013-06-12 21:29:15 +020035
36let &cpo = s:cpo_save
37unlet s:cpo_save
38
39" vim: nowrap sw=2 sts=2 ts=8: