Mercurial > vim
annotate runtime/compiler/shellcheck.vim @ 32903:54c01bb98b8e v9.0.1760
patch 9.0.1760: vim9 class problem with new() constructor
Commit: https://github.com/vim/vim/commit/6ac1544e13d78e0deeca1f357d1d73947180171c
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Sun Aug 20 18:20:17 2023 +0200
patch 9.0.1760: vim9 class problem with new() constructor
Problem: vim9 class problem with new() constructor
Solution: Don't allow a return type for the new() class constructor.
closes: #12863
closes: #12040
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 20 Aug 2023 18:30:05 +0200 |
parents | a3bb84cd0f59 |
children | e1df51f68736 |
rev | line source |
---|---|
22441 | 1 " Vim compiler file |
2 " Compiler: ShellCheck | |
3 " Maintainer: Doug Kearns <dougkearns@gmail.com> | |
4 " Last Change: 2020 Sep 4 | |
5 | |
6 if exists("current_compiler") | |
7 finish | |
8 endif | |
9 let current_compiler = "shellcheck" | |
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&vim | |
17 | |
18 CompilerSet makeprg=shellcheck\ -f\ gcc | |
19 CompilerSet errorformat=%f:%l:%c:\ %trror:\ %m\ [SC%n], | |
20 \%f:%l:%c:\ %tarning:\ %m\ [SC%n], | |
21 \%f:%l:%c:\ %tote:\ %m\ [SC%n], | |
22 \%-G%.%# | |
23 | |
24 let &cpo = s:cpo_save | |
25 unlet s:cpo_save |