treat transcient bundles as configured

- "transcient bundle" - a bundle installed with :BundleInstall or interactively
  without being declared in .vimrc

- treat them the as if they were configured
- so everything works the same

- ie before this change helptags weren't generated automatically
  with `BundleInstall bundle` or with interactive mode

- it changes the way `:BundleClean` works, since it removes directories
  that aren't bundles
- FIX: `:source .vimrc` to let `:BundleClean` remove transcient bundles

- closes #99
This commit is contained in:
gmarik
2011-12-18 03:16:41 -06:00
parent 37e82d1e18
commit 162b1bdd4f
2 changed files with 4 additions and 2 deletions

View File

@@ -3,6 +3,7 @@ func! vundle#config#bundle(arg, ...)
call s:rtp_rm_a()
call add(g:bundles, bundle)
call s:rtp_add_a()
return bundle
endf
func! vundle#config#init()