mirror of
https://github.com/ViViDboarder/vim-abuse-the-force.git
synced 2024-11-22 05:06:28 +00:00
22 lines
578 B
VimL
22 lines
578 B
VimL
" Vim compiler file
|
|
" Compiler:Salesforce Deploy
|
|
" Maintainer: Ian (ViViDboarder@gmail.com)
|
|
" Last Change: 2013 Apr 18
|
|
|
|
if exists("current_compiler")
|
|
finish
|
|
endif
|
|
let current_compiler = "AbuseTheForce"
|
|
|
|
if exists(":CompilerSet") != 2 " older Vim always used :setlocal
|
|
command -nargs=* CompilerSet setlocal <args>
|
|
endif
|
|
|
|
"CompilerSet errorformat&
|
|
"CompilerSet errorformat+=%f(%l\\,%v):%m,
|
|
" \%trror%*[^:]:\ %m,
|
|
" \%tarning%*[^:]:\ %m
|
|
|
|
"set efm=%A\ %#[javac]\ %f:%l:\ %m,%-Z\ %#[javac]\ %p^,%-C%.%#
|
|
CompilerSet makeprg="abusetheforce deploy file " . %:p
|