Mercurial > vim
annotate runtime/compiler/checkstyle.vim @ 19565:9b03bf56d05e
Added tag v8.2.0339 for changeset 06f29b6ea04ac9d004f9fe8b83aad6116e52dad0
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 01 Mar 2020 14:15:04 +0100 |
parents | f7add3891e95 |
children | 0db0640e16e0 |
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> |
f7add3891e95
Updated runtime files. Fix NL translations.
Bram Moolenaar <bram@vim.org>
parents:
36
diff
changeset
|
4 " Last Change: 2013 Jun 26 |
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 | |
15 CompilerSet makeprg=java\ com.puppycrawl.tools.checkstyle.Main\ -f\ plain | |
16 | |
17 " sample error: WebTable.java:282: '+=' is not preceeded with whitespace. | |
18 " WebTable.java:201:1: '{' should be on the previous line. | |
5161
f7add3891e95
Updated runtime files. Fix NL translations.
Bram Moolenaar <bram@vim.org>
parents:
36
diff
changeset
|
19 CompilerSet errorformat=%f:%l:%v:\ %m,%f:%l:\ %m,%-G%.%# |