Mercurial > vim
annotate runtime/compiler/rake.vim @ 26658:ed73553992bf v8.2.3858
patch 8.2.3858: Vim9: not enough tests
Commit: https://github.com/vim/vim/commit/003312b1d2ee2f4922f473b8bf50af6663c0efac
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Dec 20 10:55:35 2021 +0000
patch 8.2.3858: Vim9: not enough tests
Problem: Vim9: not enough tests.
Solution: Add tests for :try/:catch and :redir. Add missing type check.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 20 Dec 2021 12: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: |