Browse Source

fix invalid merge

events
gmarik 15 years ago
parent
commit
bfbac3c9b8
2 changed files with 2 additions and 3 deletions
  1. +2
    -2
      autoload/vundle/installer.vim
  2. +0
    -1
      test/vimrc

+ 2
- 2
autoload/vundle/installer.vim View File

@ -17,7 +17,7 @@ func! vundle#installer#install(bang, ...) abort
call s:doautocmd('BundleInstallPre', 'vundle#bundle') call s:doautocmd('BundleInstallPre', 'vundle#bundle')
call s:doautocmd('BundleInstallPre', 'bundle#'.tolower(bundle.name)) call s:doautocmd('BundleInstallPre', 'bundle#'.tolower(bundle.name))
if a:bang || !(s:installed(bundle))
if a:bang || !(bundle.installed())
call s:doautocmd('BundleInstall', 'vundle#bundle') call s:doautocmd('BundleInstall', 'vundle#bundle')
call s:doautocmd('BundleInstall', 'bundle#'.tolower(bundle.name)) call s:doautocmd('BundleInstall', 'bundle#'.tolower(bundle.name))
call s:doautocmd('BundleInstallPost', 'vundle#bundle') call s:doautocmd('BundleInstallPost', 'vundle#bundle')
@ -89,7 +89,7 @@ func! s:helptags(rtp) abort
endf endf
func! s:sync(bang, bundle) abort
func! vundle#installer#sync(bang, bundle) abort
if a:bundle.nosync() | return a:bang | endif if a:bundle.nosync() | return a:bang | endif
if a:bundle.installed() if a:bundle.installed()
if !(a:bang) | return 0 | endif if !(a:bang) | return 0 | endif


+ 0
- 1
test/vimrc View File

@ -38,7 +38,6 @@ Bundle 'rstacruz/sparkup.git', {'rtp': 'vim/'}
" Camel case " Camel case
Bundle 'vim-scripts/RubySinatra' Bundle 'vim-scripts/RubySinatra'
" PostInstall " PostInstall
Bundle 'wincent/Command-T' Bundle 'wincent/Command-T'


Loading…
Cancel
Save