neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

rake.vim (956B)


      1 " Vim compiler file
      2 " Language:		Rake
      3 " Maintainer:		Tim Pope <vimNOSPAM@tpope.org>
      4 " URL:			https://github.com/vim-ruby/vim-ruby
      5 " Last Change:		2018 Mar 02
      6 "			2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
      7 
      8 if exists("current_compiler")
      9  finish
     10 endif
     11 let current_compiler = "rake"
     12 
     13 let s:cpo_save = &cpo
     14 set cpo-=C
     15 
     16 CompilerSet makeprg=rake
     17 
     18 CompilerSet errorformat=
     19      \%D(in\ %f),
     20      \%\\s%#%\\d%#:%#\ %#from\ %f:%l:%m,
     21      \%\\s%#%\\d%#:%#\ %#from\ %f:%l:,
     22      \%\\s%##\ %f:%l:%m%\\&%.%#%\\D:%\\d%\\+:%.%#,
     23      \%\\s%##\ %f:%l%\\&%.%#%\\D:%\\d%\\+,
     24      \%\\s%#[%f:%l:\ %#%m%\\&%.%#%\\D:%\\d%\\+:%.%#,
     25      \%\\s%#%f:%l:\ %#%m%\\&%.%#%\\D:%\\d%\\+:%.%#,
     26      \%\\s%#%f:%l:,
     27      \%m\ [%f:%l]:,
     28      \%+Erake\ aborted!,
     29      \%+EDon't\ know\ how\ to\ build\ task\ %.%#,
     30      \%+Einvalid\ option:%.%#,
     31      \%+Irake\ %\\S%\\+%\\s%\\+#\ %.%#
     32 
     33 let &cpo = s:cpo_save
     34 unlet s:cpo_save
     35 
     36 " vim: nowrap sw=2 sts=2 ts=8: