vundle/autoload/vundle.vim
gmarik 5db64d6709 autoload/vundle.vim extracted into smaller files
- vundle.vim - entrypoing and loader
- config.vim - configuration and runtimepath management
- installer.vim - installation and docs
2010-12-08 22:31:11 -06:00

19 lines
740 B
VimL

" vundle.vim - is a shortcut for Vim Bundle and Is a simple plugin manager for Vim
" Maintainer: http://github.com/gmarik
" Version: 0.5
" Readme: http://github.com/gmarik/vundle/blob/master/README.md
com! -nargs=+ Bundle call vundle#config#bundle(<args>)
com! -nargs=? -bang BundleInstall call vundle#installer#install("<bang>")
com! -nargs=0 BundleDocs call vundle#installer#helptags()
com! -nargs=+ -bang BundleSearch silent call vundle#scripts#search("<bang>", <q-args>)
if !exists('g:bundles') | let g:bundles = [] | endif
func! vundle#rc()
let g:bundle_dir = expand('$HOME/.vim/bundle')
call filter(g:bundles, 's:rtp_rm(v:val.rtpath())')
let g:bundles = []
endf