Browse Source

add keymap help and bindings

pull/10/head
gmarik 15 years ago
parent
commit
851fe26a45
2 changed files with 5 additions and 4 deletions
  1. +3
    -2
      autoload/vundle/scripts.vim
  2. +2
    -2
      ftplugin/vundle.vim

+ 3
- 2
autoload/vundle/scripts.vim View File

@ -1,10 +1,11 @@
func! vundle#scripts#all(bang, ...)
let info = ['"Keymap: i - Install bundle; c - Cleanup; r - Refine list']
if a:1== '' " whether refine search string given
call s:display(['" Vim scripts: '], s:load_scripts(a:bang))
call s:display(info + ['"Vim scripts: '], s:load_scripts(a:bang))
else
let matches = filter(s:load_scripts(a:bang), 'v:val =~? "'.escape(a:1,'"').'"')
call s:display(['" Search results for: '.a:1], matches)
let @/=a:1
call s:display(info + ['"Search results for: '.a:1], matches)
redraw
endif
endf


+ 2
- 2
ftplugin/vundle.vim View File

@ -4,7 +4,7 @@ set syntax=vim
syn keyword vimCommand Bundle
nnoremap <buffer> <silent> <CR> :call vundle#scripts#install()<CR>
nnoremap <buffer> s :BundleSearch
nnoremap <buffer> i :call vundle#scripts#install()<CR>
nnoremap <buffer> r :Bundles
nnoremap <buffer> c :BundleClean<CR>
nnoremap <buffer> C :BundleClean!<CR>

Loading…
Cancel
Save