Mercurial > vim
annotate runtime/compiler/rspec.vim @ 12867:6c199b02c933 v8.0.1310
patch 8.0.1310: cproto generates errors because of missing type
commit https://github.com/vim/vim/commit/0f1e643138d47bfc94a7050c5bd25493c2153960
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Nov 18 20:22:24 2017 +0100
patch 8.0.1310: cproto generates errors because of missing type
Problem: Cproto generates errors because of missing type.
Solution: Define _Float128 when generating prototypes.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 18 Nov 2017 20:30:05 +0100 |
parents | 43efa4f5a8ea |
children | f0f06837a699 |
rev | line source |
---|---|
1668 | 1 " Vim compiler file |
2 " Language: RSpec | |
2225 | 3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org> |
4869 | 4 " URL: https://github.com/vim-ruby/vim-ruby |
1668 | 5 " Release Coordinator: Doug Kearns <dougkearns@gmail.com> |
6 | |
7 if exists("current_compiler") | |
8 finish | |
9 endif | |
10 let current_compiler = "rspec" | |
11 | |
12 if exists(":CompilerSet") != 2 " older Vim always used :setlocal | |
13 command -nargs=* CompilerSet setlocal <args> | |
14 endif | |
15 | |
16 let s:cpo_save = &cpo | |
17 set cpo-=C | |
18 | |
4869 | 19 CompilerSet makeprg=rspec |
1668 | 20 |
21 CompilerSet errorformat= | |
4869 | 22 \%f:%l:\ %tarning:\ %m, |
1668 | 23 \%E%.%#:in\ `load':\ %f:%l:%m, |
4869 | 24 \%E%f:%l:in\ `%*[^']':\ %m, |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
25 \%-Z\ \ \ \ \ %\\+\#\ %f:%l:%.%#, |
4869 | 26 \%E\ \ %\\d%\\+)%.%#, |
27 \%C\ \ \ \ \ %m, | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
28 \%C%\\s%#, |
1668 | 29 \%-G%.%# |
30 | |
31 let &cpo = s:cpo_save | |
32 unlet s:cpo_save | |
33 | |
34 " vim: nowrap sw=2 sts=2 ts=8: |