This commit is contained in:
gmarik 2011-03-19 23:27:03 -05:00
parent 46e7b0fb0d
commit 70e6b0bed9

View File

@ -148,19 +148,22 @@ run >
requires confirmation before removal of unused script-dirs from your `.vim/bundle`.
*BundleClean!* >
*BundleClean!*
>
:BundleClean!
removes unused scripts with no questions.
5. INTERACTIVE MODE ~
*vundle-interactive*
5. INTERACTIVE MODE ~
Vundle provides simple interactive mode to help you explore new scripts easily.
Interactive mode is available as result of :Bundles command. For instance running >
:Bundles! unite
searches for scripts matching 'unite' string and yelds the result:
searches for scripts matching 'unite' string and yelds the split window with
content: >
"Keymap: i - Install bundle; c - Cleanup; r - Refine list; R - Reload list
"Search results for: unite
@ -171,15 +174,20 @@ searches for scripts matching 'unite' string and yelds the result:
Bundle 'unite-font'
Bundle 'unite-colorscheme'
allows running certain commands with single keypress:
>
*i* - runs BundleInstall with name taken from line cursor is positioned on
*c* - runs BundleCleanup
*r* - alows to refine list; requires a string to refine list with
*R* - fetches fresh script list from server
As the first line(starting with `"Keymap:`) sows
certain Vundle commands can be triggered with single keypress, ie:
So move cursor over line `Bundle 'unite.vim'` and press i key.
unite.vim script will be installed!
After that you will be able to run `:Unite file` command!
KEY | DESCRIPTION
----|-------------------------- >
i | run :BundleInstall with name taken from line cursor is positioned on
c | run :BundleCleanup
r | refine list; requires a string to refine list with
R | fetch fresh script list from server
So move cursor over line `Bundle 'unite.vim'` and press i key(install).
After unite.vim script is installed - `:Unite file` command should be
available to prove 'unite.vim' availability
NOTE: Interactive installation doesn't update your .vimrc configuration.
vim:tw=78:ts=8:ft=help:norl: