blob: 5b3c7f4092d1d8c355066076dc5a25dcd8442ab0 [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>
Bram Moolenaard09091d2019-01-17 16:07:22 +01006" Last Change: 2018 Mar 02
Doug Kearns408281e2024-04-04 22:00:58 +02007" 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
Bram Moolenaarec7944a2013-06-12 21:29:15 +02008
9if exists("current_compiler")
10 finish
11endif
12let current_compiler = "rake"
13
Bram Moolenaarec7944a2013-06-12 21:29:15 +020014let s:cpo_save = &cpo
15set cpo-=C
16
17CompilerSet makeprg=rake
18
19CompilerSet errorformat=
20 \%D(in\ %f),
Bram Moolenaard09091d2019-01-17 16:07:22 +010021 \%\\s%#%\\d%#:%#\ %#from\ %f:%l:%m,
22 \%\\s%#%\\d%#:%#\ %#from\ %f:%l:,
23 \%\\s%##\ %f:%l:%m%\\&%.%#%\\D:%\\d%\\+:%.%#,
24 \%\\s%##\ %f:%l%\\&%.%#%\\D:%\\d%\\+,
25 \%\\s%#[%f:%l:\ %#%m%\\&%.%#%\\D:%\\d%\\+:%.%#,
26 \%\\s%#%f:%l:\ %#%m%\\&%.%#%\\D:%\\d%\\+:%.%#,
Bram Moolenaarec7944a2013-06-12 21:29:15 +020027 \%\\s%#%f:%l:,
Bram Moolenaar89bcfda2016-08-30 23:26:57 +020028 \%m\ [%f:%l]:,
29 \%+Erake\ aborted!,
30 \%+EDon't\ know\ how\ to\ build\ task\ %.%#,
31 \%+Einvalid\ option:%.%#,
32 \%+Irake\ %\\S%\\+%\\s%\\+#\ %.%#
Bram Moolenaarec7944a2013-06-12 21:29:15 +020033
34let &cpo = s:cpo_save
35unlet s:cpo_save
36
37" vim: nowrap sw=2 sts=2 ts=8: