Mercurial > vim
annotate runtime/compiler/cucumber.vim @ 21871:e27555ca1093 v8.2.1485
patch 8.2.1485: Vim9: readdirex() expression doesn't accept bool
Commit: https://github.com/vim/vim/commit/af8822ce085e3bd8edeb52cbb7306ddd42427d39
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Aug 19 13:55:01 2020 +0200
patch 8.2.1485: Vim9: readdirex() expression doesn't accept bool
Problem: Vim9: readdirex() expression doesn't accept bool.
Solution: Accept both -1 and bool. (closes https://github.com/vim/vim/issues/6737)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 19 Aug 2020 14:00:04 +0200 |
parents | 43efa4f5a8ea |
children | e1df51f68736 |
rev | line source |
---|---|
2526 | 1 " Vim compiler file |
2 " Compiler: Cucumber | |
3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org> | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
2526
diff
changeset
|
4 " Last Change: 2016 Aug 29 |
2526 | 5 |
6 if exists("current_compiler") | |
7 finish | |
8 endif | |
9 let current_compiler = "cucumber" | |
10 | |
11 if exists(":CompilerSet") != 2 " older Vim always used :setlocal | |
12 command -nargs=* CompilerSet setlocal <args> | |
13 endif | |
14 | |
15 let s:cpo_save = &cpo | |
16 set cpo-=C | |
17 | |
18 CompilerSet makeprg=cucumber | |
19 | |
20 CompilerSet errorformat= | |
21 \%W%m\ (Cucumber::Undefined), | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
2526
diff
changeset
|
22 \%E%m\ (%\\S%#), |
2526 | 23 \%Z%f:%l, |
24 \%Z%f:%l:%.%# | |
25 | |
26 let &cpo = s:cpo_save | |
27 unlet s:cpo_save | |
28 | |
29 " vim:set sw=2 sts=2: |