-
-
Save akimichi/2470166 to your computer and use it in GitHub Desktop.
vim maven compiler file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Compiler: maven | |
" Author: Michael Schmitz <[email protected]> | |
" Last Change: 10/27/2011 | |
if exists("current_compiler") | |
finish | |
endif | |
let current_compiler = "maven" | |
set makeprg=mvn\ clean\ compile | |
set errorformat=\[ERROR]\ %f:%l:\ %m,%-G%.%# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Compiler: scala compiler (scalac) | |
" Author: Michael Schmitz <[email protected]> | |
" Last Change: 10/27/2011 | |
if exists("current_compiler") | |
finish | |
endif | |
let current_compiler = "scalac" | |
set makeprg=scalac\ % | |
set errorformat=%E%f:%l:\ error:\ %m,%Z%p^,%-C%.%#, | |
\%-G%.%# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Compiler: scala interpreter (scalai) | |
" Author: Michael Schmitz <[email protected]> | |
" Last Change: 10/27/2011 | |
if exists("current_compiler") | |
finish | |
endif | |
let current_compiler = "scalai" | |
set makeprg=scala\ % | |
set errorformat=%E%f:%l:\ error:\ %m,%Z%p^,%-C%.%#, | |
\%-G%.%# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment