2010-12-09 00:19:17 -05:00
|
|
|
" Vundle is a shortcut for Vim Bundle and Is a simple plugin manager for Vim
|
|
|
|
" Author: gmarik
|
|
|
|
" HomePage: http://github.com/gmarik/vundle
|
2010-10-17 21:25:31 -04:00
|
|
|
" Readme: http://github.com/gmarik/vundle/blob/master/README.md
|
2011-03-06 15:36:28 -05:00
|
|
|
" Version: 0.6
|
2010-10-17 19:18:08 -04:00
|
|
|
|
2011-03-06 16:12:37 -05:00
|
|
|
com! -nargs=+ Bundle
|
|
|
|
\ call vundle#config#bundle(<args>)
|
2010-10-17 19:18:08 -04:00
|
|
|
|
2011-03-19 15:11:02 -04:00
|
|
|
com! -nargs=? -bang -complete=custom,vundle#scripts#complete BundleInstall
|
|
|
|
\ call vundle#installer#install('!' == '<bang>', <q-args>)
|
|
|
|
|
2011-03-06 16:12:37 -05:00
|
|
|
com! -nargs=? -bang BundleClean
|
|
|
|
\ call vundle#installer#clean('!' == '<bang>')
|
|
|
|
|
|
|
|
com! -nargs=0 BundleDocs
|
|
|
|
\ call vundle#installer#helptags(g:bundles)
|
|
|
|
|
2011-03-19 14:12:31 -04:00
|
|
|
com! -nargs=? -bang Bundles
|
|
|
|
\ call vundle#scripts#all('!'=='<bang>', <q-args>)
|
2011-03-06 16:12:37 -05:00
|
|
|
|
2011-03-19 14:12:31 -04:00
|
|
|
" deprecated in favor of Bundles
|
|
|
|
com! -nargs=? -bang BundleSearch
|
|
|
|
\ call vundle#scripts#all('!' == '<bang>', <q-args>)
|
2011-03-19 03:54:35 -04:00
|
|
|
|
2011-03-06 16:12:37 -05:00
|
|
|
com! -nargs=0 VundleLog
|
|
|
|
\ silent pedit `=g:vundle_log`
|
2011-02-04 00:13:46 -05:00
|
|
|
|
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')
|
2010-12-08 23:52:58 -05:00
|
|
|
call vundle#config#init()
|
2010-10-18 22:41:11 -04:00
|
|
|
endf
|