1" Vim compiler file 2" Language: Rake 3" Maintainer: Tim Pope <[email protected]> 4" URL: https://github.com/vim-ruby/vim-ruby 5" Release Coordinator: Doug Kearns <[email protected]> 6" Last Change: 2018 Mar 02 7 8if exists("current_compiler") 9 finish 10endif 11let current_compiler = "rake" 12 13if exists(":CompilerSet") != 2 " older Vim always used :setlocal 14 command -nargs=* CompilerSet setlocal <args> 15endif 16 17let s:cpo_save = &cpo 18set cpo-=C 19 20CompilerSet makeprg=rake 21 22CompilerSet errorformat= 23 \%D(in\ %f), 24 \%\\s%#%\\d%#:%#\ %#from\ %f:%l:%m, 25 \%\\s%#%\\d%#:%#\ %#from\ %f:%l:, 26 \%\\s%##\ %f:%l:%m%\\&%.%#%\\D:%\\d%\\+:%.%#, 27 \%\\s%##\ %f:%l%\\&%.%#%\\D:%\\d%\\+, 28 \%\\s%#[%f:%l:\ %#%m%\\&%.%#%\\D:%\\d%\\+:%.%#, 29 \%\\s%#%f:%l:\ %#%m%\\&%.%#%\\D:%\\d%\\+:%.%#, 30 \%\\s%#%f:%l:, 31 \%m\ [%f:%l]:, 32 \%+Erake\ aborted!, 33 \%+EDon't\ know\ how\ to\ build\ task\ %.%#, 34 \%+Einvalid\ option:%.%#, 35 \%+Irake\ %\\S%\\+%\\s%\\+#\ %.%# 36 37let &cpo = s:cpo_save 38unlet s:cpo_save 39 40" vim: nowrap sw=2 sts=2 ts=8: 41