Mercurial > vim
annotate runtime/compiler/checkstyle.vim @ 17826:f2a1c7de4d14
Added tag v8.1.1909 for changeset ce993ba17adbfcc4f142f5ca35701097d9c5ff7a
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 21 Aug 2019 23:00:04 +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%.%# |