Mercurial > vim
annotate runtime/compiler/rake.vim @ 27037:a0a37337428a v8.2.4047
patch 8.2.4047: depending on the build features error messages are unused
Commit: https://github.com/vim/vim/commit/f85a424c832777892c4efaff163c2fa710ce8d91
Author: Dominique Pelle <dominique.pelle@gmail.com>
Date: Sun Jan 9 12:49:31 2022 +0000
patch 8.2.4047: depending on the build features error messages are unused
Problem: Depending on the build features error messages are unused.
Solution: Add #ifdefs. (Dominique Pell?, closes https://github.com/vim/vim/issues/9493)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 09 Jan 2022 14:00:04 +0100 |
parents | f0f06837a699 |
children | e1df51f68736 |
rev | line source |
---|---|
4869 | 1 " 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> | |
15512 | 6 " Last Change: 2018 Mar 02 |
4869 | 7 |
8 if exists("current_compiler") | |
9 finish | |
10 endif | |
11 let current_compiler = "rake" | |
12 | |
13 if exists(":CompilerSet") != 2 " older Vim always used :setlocal | |
14 command -nargs=* CompilerSet setlocal <args> | |
15 endif | |
16 | |
17 let s:cpo_save = &cpo | |
18 set cpo-=C | |
19 | |
20 CompilerSet makeprg=rake | |
21 | |
22 CompilerSet errorformat= | |
23 \%D(in\ %f), | |
15512 | 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%\\+:%.%#, | |
4869 | 30 \%\\s%#%f:%l:, |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
31 \%m\ [%f:%l]:, |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
32 \%+Erake\ aborted!, |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
33 \%+EDon't\ know\ how\ to\ build\ task\ %.%#, |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
34 \%+Einvalid\ option:%.%#, |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
35 \%+Irake\ %\\S%\\+%\\s%\\+#\ %.%# |
4869 | 36 |
37 let &cpo = s:cpo_save | |
38 unlet s:cpo_save | |
39 | |
40 " vim: nowrap sw=2 sts=2 ts=8: |