Browse Source

Merge 7681eb5611 into bf70a158c5

pull/97/merge
Scott Bronson 12 years ago
parent
commit
6b77e1713c
2 changed files with 7 additions and 0 deletions
  1. +3
    -0
      autoload/vundle.vim
  2. +4
    -0
      autoload/vundle/installer.vim

+ 3
- 0
autoload/vundle.vim View File

@ -49,6 +49,9 @@ com! VundleUpdate PluginInstall!
com! -nargs=+ Bundle
\ call vundle#config#bundle(<args>)
com! -nargs=1 BundleCommand
\ call vundle#installer#command(<args>)
com! -nargs=? -bang -complete=custom,vundle#scripts#complete BundleInstall
\ call vundle#installer#new('!' == '<bang>', <q-args>)


+ 4
- 0
autoload/vundle/installer.vim View File

@ -11,6 +11,10 @@ func! vundle#installer#new(bang, ...) abort
call vundle#config#require(bundles)
endf
func! vundle#installer#command(cmd)
silent execute '!cd ~/.vim/bundle && ' . a:cmd
redraw!
endf
func! s:process(bang, cmd)
let msg = ''


Loading…
Cancel
Save