Docs fixes

This commit is contained in:
gmarik 2011-02-19 11:21:22 -06:00
parent 2b34c9481f
commit 75e11ff51e

View File

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