Mercurial > vim
annotate runtime/compiler/cucumber.vim @ 31133:cc0c4141fb73 v9.0.0901
patch 9.0.0901: setting w_leftcol and handling side effects is confusing
Commit: https://github.com/vim/vim/commit/0c34d562647f029faca40f7733ccfb7b5377672b
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Nov 18 14:07:20 2022 +0000
patch 9.0.0901: setting w_leftcol and handling side effects is confusing
Problem: Setting w_leftcol and handling side effects is confusing.
Solution: Use a function to set w_leftcol() and handle side effects.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 18 Nov 2022 15:15:04 +0100 |
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: |