Mercurial > vim
annotate runtime/compiler/checkstyle.vim @ 26686:c04b28fad0cc v8.2.3872
patch 8.2.3872: Vim9: finddir() and uniq() return types can be more specific
Commit: https://github.com/vim/vim/commit/080182216e605df3428cc699b9fd7e761368d12f
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Dec 22 18:45:37 2021 +0000
patch 8.2.3872: Vim9: finddir() and uniq() return types can be more specific
Problem: Vim9: finddir() and uniq() return types can be more specific.
Solution: Adjust the return type.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 22 Dec 2021 20:00:04 +0100 |
parents | 0db0640e16e0 |
children | e1df51f68736 |
rev | line source |
---|---|
7 | 1 " Vim compiler file |
2 " Compiler: Checkstyle | |
5161
f7add3891e95
Updated runtime files. Fix NL translations.
Bram Moolenaar <bram@vim.org>
parents:
36
diff
changeset
|
3 " Maintainer: Doug Kearns <dougkearns@gmail.com> |
21825 | 4 " Last Change: 2020 Aug 2 |
7 | 5 |
6 if exists("current_compiler") | |
7 finish | |
8 endif | |
9 let current_compiler = "checkstyle" | |
10 | |
11 if exists(":CompilerSet") != 2 " older Vim always used :setlocal | |
12 command -nargs=* CompilerSet setlocal <args> | |
13 endif | |
14 | |
21825 | 15 let s:cpo_save = &cpo |
16 set cpo&vim | |
17 | |
18 " CompilerSet makeprg=java\ com.puppycrawl.tools.checkstyle.Main\ -f\ plain\ -c\ /sun_checks.xml | |
19 " CompilerSet makeprg=java\ -jar\ checkstyle-X.XX-all.jar\ -f\ plain\ -c\ /sun_checks.xml | |
7 | 20 |
21825 | 21 CompilerSet makeprg=checkstyle\ -f\ plain |
22 CompilerSet errorformat=[%tRROR]\ %f:%l:%v:\ %m, | |
23 \[%tARN]\ %f:%l:%v:\ %m, | |
24 \[%tRROR]\ %f:%l:\ %m, | |
25 \[%tARN]\ %f:%l:\ %m, | |
26 \%-G%.%# | |
27 | |
28 let &cpo = s:cpo_save | |
29 unlet s:cpo_save |