32 lines
954 B
VimL
32 lines
954 B
VimL
" Vundle is a shortcut for Vim Bundle and Is a simple plugin manager for Vim
|
|
" Author: gmarik
|
|
" HomePage: http://github.com/gmarik/vundle
|
|
" Readme: http://github.com/gmarik/vundle/blob/master/README.md
|
|
" Version: 0.6
|
|
|
|
com! -nargs=+ Bundle
|
|
\ call vundle#config#bundle(<args>)
|
|
|
|
com! -nargs=? -bang -complete=custom,vundle#scripts#complete BundleInstall
|
|
\ call vundle#installer#install('!' == '<bang>', <q-args>)
|
|
|
|
com! -nargs=? -bang BundleClean
|
|
\ call vundle#installer#clean('!' == '<bang>')
|
|
|
|
com! -nargs=0 BundleDocs
|
|
\ call vundle#installer#helptags(g:bundles)
|
|
|
|
com! -nargs=+ -bang BundleSearch
|
|
\ silent call vundle#scripts#search('!' == '<bang>', <q-args>)
|
|
|
|
com! -nargs=0 Vundle
|
|
\ call vundle#scripts#browse()
|
|
|
|
com! -nargs=0 VundleLog
|
|
\ silent pedit `=g:vundle_log`
|
|
|
|
func! vundle#rc()
|
|
let g:bundle_dir = expand('$HOME/.vim/bundle')
|
|
call vundle#config#init()
|
|
endf
|