Browse Source

use capital D to map delete cmd

- to avoid accidental removal
pull/86/merge
gmarik 15 years ago
parent
commit
b571067525
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      autoload/vundle/installer.vim
  2. +1
    -1
      autoload/vundle/scripts.vim

+ 1
- 1
autoload/vundle/installer.vim View File

@ -133,7 +133,7 @@ func! vundle#installer#clean(bang) abort
redraw!
if (a:bang || empty(names) || input('Continue ? [ y/n ]:') =~? 'y')
call s:process(a:bang, 'd')
call s:process(a:bang, 'D')
endif
endf


+ 1
- 1
autoload/vundle/scripts.vim View File

@ -69,7 +69,7 @@ func! vundle#scripts#view(title, headers, results)
com! -buffer -nargs=0 VundleLog call s:view_log()
nnoremap <buffer> q :silent bd!<CR>
nnoremap <buffer> d :exec 'Delete'.getline('.')<CR>
nnoremap <buffer> D :exec 'Delete'.getline('.')<CR>
nnoremap <buffer> i :exec 'Install'.getline('.')<CR>
nnoremap <buffer> I :exec 'Install'.substitute(getline('.'), '^Bundle ', 'Bundle! ', '')<CR>


Loading…
Cancel
Save