vundle
is a command line tool for managing Vim packages/plugins/bundles. It's
fast to clone/update/clean bundles. See vundle -h
for features.
Be aware that this is currently a personalized tool.
- The bundle list is get by parsing files like
~/.vim/init?.vim
for lines matchingBundle\w*\(['"]
, and in which lines extracting the strings like[domain.com(/|:)]author/project[:[branch]][/sub/directory]
. - Bundles are installed into
~/.vim/bundle
. - To generate Vim help tags files, a function
helptags#(overwrite_or_not)
must be defined. This function should populate&runtimepath
as it would be invoked likevim -Nes --cmd 'call helptags#(1/0) | qall!'
.