Mercurial > vim
annotate runtime/compiler/cucumber.vim @ 22209:825fb261b141
Added tag v8.2.1653 for changeset a607f02fd17a8b2c6814b1973c0f2433dfc54d15
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 10 Sep 2020 19:30:06 +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: |