|
|
|
@ -70,7 +70,7 @@ each configured repo to `~/.vim/bundle/`. |
|
|
|
4. SCRIPTS ~ |
|
|
|
*vundle-scripts* |
|
|
|
4.1 CONFIGURE SCRIPTS ~ |
|
|
|
*vundle-scripts-configure* |
|
|
|
*vundle-scripts-configure* *Bundle* |
|
|
|
Before installing scripts they need to be configured. It's done using `Bundle` |
|
|
|
command in `.vimrc`: > |
|
|
|
|
|
|
|
@ -79,7 +79,7 @@ or > |
|
|
|
Bundle 'script_name' " 'script-name' should be an official script name (see |vundle-scripts-search| ) |
|
|
|
|
|
|
|
4.2 INSTALL SCRIPTS ~ |
|
|
|
*vundle-scripts-install* |
|
|
|
*vundle-scripts-install* *BundleInstall* |
|
|
|
run > |
|
|
|
:BundleInstall |
|
|
|
|
|
|
|
@ -87,14 +87,14 @@ installs configured scripts. Newly installed scripts will be automatically |
|
|
|
enabled. Except special cases requiring compilation or preconfiguration. |
|
|
|
|
|
|
|
4.3 UPDATE SCRIPTS ~ |
|
|
|
*vundle-scripts-update* |
|
|
|
*vundle-scripts-update* *BundleInstall!* |
|
|
|
run > |
|
|
|
:BundleInstall! " note bang(!) |
|
|
|
|
|
|
|
installs or updates configured scripts. |
|
|
|
|
|
|
|
4.4 SEARCHING ~ |
|
|
|
*vundle-scripts-search* |
|
|
|
*vundle-scripts-search* *BundleSearch* |
|
|
|
run > |
|
|
|
:BundleSearch foo |
|
|
|
|
|
|
|
@ -103,7 +103,7 @@ lists search results in new split window, ie: |
|
|
|
Bundle "VimFootnotes" |
|
|
|
Bundle "foo.vim" |
|
|
|
|
|
|
|
so you can just copy ones you need to `.vimrc`. |
|
|
|
so you can just copy ones you need to `.vimrc`. *BundleSearch!* |
|
|
|
> |
|
|
|
:BundleSearch! foo " note bang(!) |
|
|
|
|
|
|
|
@ -112,12 +112,15 @@ refreshes script list before performing actual search. |
|
|
|
Searching requires [`curl`](http://curl.haxx.se/) |
|
|
|
|
|
|
|
4.5 CLEANING UP ~ |
|
|
|
*vundle-scripts-cleanup* |
|
|
|
*vundle-scripts-cleanup* *BundleClean* |
|
|
|
run > |
|
|
|
:BundleClean |
|
|
|
|
|
|
|
confirms removal of unused script dirs from your `.vim/bundle`. |
|
|
|
*BundleClean!* |
|
|
|
> |
|
|
|
:BundleClean! |
|
|
|
|
|
|
|
removes unused scripts with no questions. |
|
|
|
|
|
|
|
vim:tw=78:ts=8:ft=help:norl: |