Mercurial > vim
annotate runtime/compiler/cucumber.vim @ 24874:14b0b35d8488 v8.2.2975
patch 8.2.2975: Vim9: can only use an autoload function name as a string
Commit: https://github.com/vim/vim/commit/f0a4069e3df904ac6bd57718ec06e56c5d7363e4
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jun 11 22:05:47 2021 +0200
patch 8.2.2975: Vim9: can only use an autoload function name as a string
Problem: Vim9: can only use an autoload function name as a string.
Solution: Load the autoload script when encountered. (closes https://github.com/vim/vim/issues/8124)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 11 Jun 2021 22:15:03 +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: |