From 5b34f8569ed6db04737e09a03fa6e651c9af1fd1 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Wed, 17 Jul 2013 15:46:22 -0700 Subject: [PATCH] Fix warnings with Vundle updates Make ForceDeploy and other commands override with --- plugin/AbuseTheForce.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugin/AbuseTheForce.vim b/plugin/AbuseTheForce.vim index 3a8cbd6..c579b2b 100644 --- a/plugin/AbuseTheForce.vim +++ b/plugin/AbuseTheForce.vim @@ -46,10 +46,10 @@ function! AbuseTheForceTarget(...) 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() " Change deploy target +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() " Change deploy target " Set SF Compiler autocmd BufNewFile,BufRead *.cls,*.trigger,*.page,*.component compiler AbuseTheForce