vim-abuse-the-force/plugin/AbuseTheForce.vim

57 lines
1.5 KiB
VimL

function! AbuseTheForceDeploy()
let filePath = expand("%")
"let command = "!echo \"" . filePath . "\""
let command = "!abusetheforce deploy file \"" . filePath . "\""
execute command
endfunction
function! AbuseTheForceDeployTest()
let filePath = expand("%")
"let command = "!echo \"" . filePath . "\""
let command = "!abusetheforce deploy test \"" . filePath . "\""
execute command
endfunction
function! AbuseTheForceRetrieve()
let filePath = expand("%")
"let command = "!echo \"" . filePath . "\""
let command = "!abusetheforce retrieve file \"" . filePath . "\""
execute command
endfunction
function! AbuseTheForceTarget(...)
if a:0 > 0
if a:1 == "?"
let command = "!abusetheforce target list"
else
let target = a:1
let command = "!abusetheforce target activate \"" . target . "\""
end
execute command
else
let command = "!abusetheforce target"
execute command
end
endfunction
command -nargs=0 ForceDeploy call AbuseTheForceDeploy() " Deploy current file
command -nargs=0 ForceDeployTest call AbuseTheForceDeployTest() " Deploy current file and run test
command -nargs=0 ForceRetrieve call AbuseTheForceRetrieve() " Retrieve current file
command -nargs=? ForceTarget call AbuseTheForceTarget(<f-args>) " Change deploy target
" Set SF Compiler
autocmd BufNewFile,BufRead *.cls,*.trigger,*.page,*.component compiler AbuseTheForce