From 035cc6ecba68558552856c1d001aff3dc781d5fb Mon Sep 17 00:00:00 2001 From: gmarik Date: Sat, 19 Mar 2011 13:51:32 -0500 Subject: [PATCH] :BundleInstall is gone for now --- autoload/vundle.vim | 3 --- autoload/vundle/scripts.vim | 4 ---- 2 files changed, 7 deletions(-) diff --git a/autoload/vundle.vim b/autoload/vundle.vim index 759a2ca..1b2d59f 100644 --- a/autoload/vundle.vim +++ b/autoload/vundle.vim @@ -7,9 +7,6 @@ com! -nargs=+ Bundle \ call vundle#config#bundle() -com! -nargs=? -bang -complete=custom,vundle#scripts#complete BundleInstall - \ call vundle#installer#install('!' == '', ) - com! -nargs=? -bang BundleClean \ call vundle#installer#clean('!' == '') diff --git a/autoload/vundle/scripts.vim b/autoload/vundle/scripts.vim index c7be30c..27d656b 100644 --- a/autoload/vundle/scripts.vim +++ b/autoload/vundle/scripts.vim @@ -9,10 +9,6 @@ func! vundle#scripts#all(bang, ...) endif endf -func! vundle#scripts#complete(a,c,d) - return join(s:load_scripts(0),"\n") -endf - func! vundle#scripts#install() abort let line = substitute(substitute(getline('.'), '\s*Bundle\s*','','g'), "'",'','g') call vundle#installer#install(0, line)