Mercurial > vim
annotate runtime/compiler/rspec.vim @ 28883:d5436dbdd082 v8.2.4964
patch 8.2.4964: MS-Windows GUI: mouse event test is flaky
Commit: https://github.com/vim/vim/commit/3b675c276c71472022b684b7b1dec213824d3104
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon May 16 13:34:44 2022 +0100
patch 8.2.4964: MS-Windows GUI: mouse event test is flaky
Problem: MS-Windows GUI: mouse event test is flaky.
Solution: Add a short delay after generating a mouse event.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 16 May 2022 14:45:03 +0200 |
parents | f0f06837a699 |
children | e1df51f68736 |
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> |
15512 | 6 " Last Change: 2018 Aug 07 |
1668 | 7 |
8 if exists("current_compiler") | |
9 finish | |
10 endif | |
11 let current_compiler = "rspec" | |
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 | |
4869 | 20 CompilerSet makeprg=rspec |
1668 | 21 |
22 CompilerSet errorformat= | |
4869 | 23 \%f:%l:\ %tarning:\ %m, |
1668 | 24 \%E%.%#:in\ `load':\ %f:%l:%m, |
4869 | 25 \%E%f:%l:in\ `%*[^']':\ %m, |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
26 \%-Z\ \ \ \ \ %\\+\#\ %f:%l:%.%#, |
15512 | 27 \%E\ \ \ \ \ Failure/Error:\ %m, |
28 \%E\ \ \ \ \ Failure/Error:, | |
4869 | 29 \%C\ \ \ \ \ %m, |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
30 \%C%\\s%#, |
1668 | 31 \%-G%.%# |
32 | |
33 let &cpo = s:cpo_save | |
34 unlet s:cpo_save | |
35 | |
36 " vim: nowrap sw=2 sts=2 ts=8: |