Mercurial > vim
annotate runtime/compiler/checkstyle.vim @ 17631:1f3f6e1d69cf
Added tag v8.1.1812 for changeset 380adf86bf661203da08231ae67a490e2ae072a1
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 04 Aug 2019 19:00:05 +0200 |
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%.%# |