Skip to content
This repository has been archived by the owner on May 27, 2023. It is now read-only.

Latest commit

 

History

History
16 lines (12 loc) · 721 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 721 Bytes

Vundle

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.

Specification

  1. The bundle list is get by parsing files like ~/.vim/init?.vim for lines matching Bundle\w*\(['"], and in which lines extracting the strings like [domain.com(/|:)]author/project[:[branch]][/sub/directory].
  2. Bundles are installed into ~/.vim/bundle.
  3. 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 like vim -Nes --cmd 'call helptags#(1/0) | qall!'.