Add new stuff
This commit is contained in:
parent
69661de82f
commit
07744f6823
333 changed files with 1989 additions and 6 deletions
|
|
@ -1,89 +0,0 @@
|
|||
" Author: Eric Van Dewoestine
|
||||
"
|
||||
" Description: {{{
|
||||
" Compiler for ant (enhancement to default ant compiler provided w/ vim).
|
||||
"
|
||||
" License:
|
||||
"
|
||||
" Copyright (C) 2005 - 2014 Eric Van Dewoestine
|
||||
"
|
||||
" This program is free software: you can redistribute it and/or modify
|
||||
" it under the terms of the GNU General Public License as published by
|
||||
" the Free Software Foundation, either version 3 of the License, or
|
||||
" (at your option) any later version.
|
||||
"
|
||||
" This program is distributed in the hope that it will be useful,
|
||||
" but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
" GNU General Public License for more details.
|
||||
"
|
||||
" You should have received a copy of the GNU General Public License
|
||||
" along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
"
|
||||
" }}}
|
||||
|
||||
if exists("current_compiler")
|
||||
finish
|
||||
endif
|
||||
let current_compiler = "eclim_ant"
|
||||
|
||||
if !exists('g:EclimAntCompilerAdditionalErrorFormat')
|
||||
let g:EclimAntCompilerAdditionalErrorFormat = ''
|
||||
endif
|
||||
|
||||
if !exists('g:EclimAntErrorFormat')
|
||||
let g:EclimAntErrorFormat = ''
|
||||
endif
|
||||
|
||||
if !exists('g:EclimAntErrorsEnabled')
|
||||
let g:EclimAntErrorsEnabled = 0
|
||||
endif
|
||||
if g:EclimAntErrorsEnabled
|
||||
let g:EclimAntErrorFormat .= '\%A%f:%l:\ %m,'
|
||||
endif
|
||||
|
||||
CompilerSet makeprg=ant\ -find\ build.xml\ $*
|
||||
|
||||
" The two entries before the last one, are for catching ant build file names
|
||||
" and error line numbers.
|
||||
exec 'CompilerSet errorformat=' .
|
||||
\ '\%-G%.%#[javac]\ %.%#:\ warning:\ unmappable\ character\ %.%#,' .
|
||||
\ '\%A%.%#[javac]\ %f:%l:\ %m,' .
|
||||
\ '\%C%.%#[javac]\ symbol\ %#:\ %m,' .
|
||||
\ '\%-Z%.%#[javac]\ %p^,' .
|
||||
\ '\%A%.%#[javadoc]\ %f:%l:\ %m,' .
|
||||
\ '\%-C%.%#[javadoc]\ location:\ %.%#,' .
|
||||
\ '\%-C%.%#[javadoc]\ %#,' .
|
||||
\ '\%-Z%.%#[javadoc]\ %p^,' .
|
||||
\ '\%-G%.%#[javadoc]\ Note:%.%#,' .
|
||||
\ '\%-G%.%#[javadoc]\ javadoc:%.%#,' .
|
||||
\ '\%.%#[javadoc]\ %f:\ %m,' .
|
||||
\ '\%.%#[java]\ org\.apache\.jasper\.JasperException:\ file:%f(%l\\,%c)\ %m,' .
|
||||
\ '\%.%#[java]\ %f:%l:%c:\ %m,' .
|
||||
\ '\%.%#[java]\ %f:%l:\ %m,' .
|
||||
\ '\%+A%.%#[junit]\ %.%#Failures:\ %[%^0]%.%#\ Time\ elapsed:\ %.%#,' .
|
||||
\ '\%-Z%.%#[junit]\ Test\ %f\ FAILED,' .
|
||||
\ '\%+A%.%#[junit]\ %.%#Errors:\ %[%^0]%.%#\ Time\ elapsed:\ %.%#,' .
|
||||
\ '\%-Z%.%#[junit]\ Test\ %f\ FAILED,' .
|
||||
\ '\%+A%.%#[cactus]\ %.%#Failures:\ %[%^0]%.%#\ Time\ elapsed:\ %.%#,' .
|
||||
\ '\%-Z%.%#[cactus]\ Test\ %f\ FAILED,' .
|
||||
\ '\%+A%.%#[cactus]\ %.%#Errors:\ %[%^0]%.%#\ Time\ elapsed:\ %.%#,' .
|
||||
\ '\%-Z%.%#[cactus]\ Test\ %f\ FAILED,' .
|
||||
\ '\%.%#[checkstyle]\ %f:%l:%c:\ %m,' .
|
||||
\ '\%.%#[checkstyle]\ %f:%l:\ %m,' .
|
||||
\ '\%E%.%#[scalac]\ %f:%l:\ error:\ %m,' .
|
||||
\ '\%-Z%.%#[scalac]\ %p^,' .
|
||||
\ '\%W%.%#[scalac]\ %f:%l:\ warning:\ %m,' .
|
||||
\ '\%-Z%.%#[scalac]\ %p^,' .
|
||||
\ '\%A%.%#[scalac]\ %f:%l:\ %m,' .
|
||||
\ '\%-Z%.%#[scalac]\ %p^,' .
|
||||
\ '\%+A%.%#eclim\ testng:\ %f:%m,' .
|
||||
\ '\%.%#\ ERROR\ %.%#\ line\ %l\ in\ file:\ %.%f%.:\ %m,' .
|
||||
\ g:EclimAntCompilerAdditionalErrorFormat .
|
||||
\ '\%.%#[exec]\ %f:%l:%c:\ %m,' .
|
||||
\ '\%.%#[exec]\ %f:%l:\ %m,' .
|
||||
\ '\%f:%l:%c:\ %m,' .
|
||||
\ g:EclimAntErrorFormat .
|
||||
\ '\%-G%.%#'
|
||||
|
||||
" vim:ft=vim:fdm=marker
|
||||
Loading…
Add table
Add a link
Reference in a new issue