23 lines
526 B
VimL
23 lines
526 B
VimL
" Vim Compiler File
|
|
" Compiler: gradle
|
|
|
|
if exists("current_compiler")
|
|
finish
|
|
endif
|
|
let current_compiler = "gradle"
|
|
|
|
if exists(":CompilerSet") != 2 " older Vim always used :setlocal
|
|
command -nargs=* CompilerSet setlocal <args>
|
|
endif
|
|
|
|
CompilerSet makeprg=gradle
|
|
|
|
CompilerSet errorformat=
|
|
\%-G:%.%\\+,
|
|
\%E%f:\ %\\d%\\+:\ %m\ @\ line\ %l\\,\ column\ %c.,%-C%.%#,%Z%p^,
|
|
\%E%>%f:\ %\\d%\\+:\ %m,%C\ @\ line\ %l\\,\ column\ %c.,%-C%.%#,%Z%p^,
|
|
\%-G\\s%#,
|
|
\%-GBUILD\ SUCCESSFUL#,
|
|
\%-GTotal\ \time:\ %.%#
|
|
|