Mercurial > vim
annotate runtime/compiler/checkstyle.vim @ 26624:bdf11d8e3df3 v8.2.3841
patch 8.2.3841: Vim9: outdated TODO items, disabled tests that work
Commit: https://github.com/vim/vim/commit/71b768509250b12696e8cc90e5902029f1b5433d
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Dec 17 20:15:38 2021 +0000
patch 8.2.3841: Vim9: outdated TODO items, disabled tests that work
Problem: Vim9: outdated TODO items, disabled tests that work.
Solution: Remove TODO items, run tests that work now. Check that a dict
item isn't locked.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 17 Dec 2021 21:30:03 +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 |