vundle/autoload/vundle.vim

19 lines
740 B
VimL
Raw Normal View History

2010-10-17 21:25:31 -04:00
" vundle.vim - is a shortcut for Vim Bundle and Is a simple plugin manager for Vim
" Maintainer: http://github.com/gmarik
" Version: 0.5
2010-10-17 21:25:31 -04:00
" Readme: http://github.com/gmarik/vundle/blob/master/README.md
2010-10-17 19:18:08 -04:00
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()
2010-10-17 19:18:08 -04:00
com! -nargs=+ -bang BundleSearch silent call vundle#scripts#search("<bang>", <q-args>)
2010-10-17 19:18:08 -04:00
2010-12-08 22:26:38 -05:00
if !exists('g:bundles') | let g:bundles = [] | endif
2010-10-31 23:02:20 -04:00
func! vundle#rc()
2010-12-08 22:26:38 -05:00
let g:bundle_dir = expand('$HOME/.vim/bundle')
call filter(g:bundles, 's:rtp_rm(v:val.rtpath())')
2010-10-31 23:02:20 -04:00
let g:bundles = []
2010-10-18 22:41:11 -04:00
endf