Browse Source

Refactor vundle#config#init() logic

pull/98/head
Rainux Luo 14 years ago
parent
commit
367fafdba0
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      autoload/vundle/config.vim

+ 3
- 2
autoload/vundle/config.vim View File

@ -6,8 +6,9 @@ func! vundle#config#bundle(arg, ...)
endf
func! vundle#config#init()
if !exists('g:bundles') | let g:bundles = [] | endif
call s:rtp_rm_a()
if exists('g:bundles')
call s:rtp_rm_a()
endif
let g:bundles = []
endf


Loading…
Cancel
Save