Change reload map to r

This commit is contained in:
Tim Pope 2014-06-21 09:33:59 -04:00
parent 269c89ef59
commit 64c690603e
2 changed files with 2 additions and 1 deletions

View File

@ -55,7 +55,7 @@ that are part of Git repositories).
p |:Git| add --patch p |:Git| add --patch
p |:Git| reset --patch (staged files) p |:Git| reset --patch (staged files)
q close status q close status
R reload status r reload status
S |:Gvsplit| S |:Gvsplit|
*fugitive-:Gcommit* *fugitive-:Gcommit*

View File

@ -2156,6 +2156,7 @@ function! s:BufReadIndex() abort
nnoremap <buffer> <silent> p :<C-U>execute <SID>StagePatch(line('.'),line('.')+v:count1-1)<CR> nnoremap <buffer> <silent> p :<C-U>execute <SID>StagePatch(line('.'),line('.')+v:count1-1)<CR>
xnoremap <buffer> <silent> p :<C-U>execute <SID>StagePatch(line("'<"),line("'>"))<CR> xnoremap <buffer> <silent> p :<C-U>execute <SID>StagePatch(line("'<"),line("'>"))<CR>
nnoremap <buffer> <silent> q :<C-U>if bufnr('$') == 1<Bar>quit<Bar>else<Bar>bdelete<Bar>endif<CR> nnoremap <buffer> <silent> q :<C-U>if bufnr('$') == 1<Bar>quit<Bar>else<Bar>bdelete<Bar>endif<CR>
nnoremap <buffer> <silent> r :<C-U>edit<CR>
nnoremap <buffer> <silent> R :<C-U>edit<CR> nnoremap <buffer> <silent> R :<C-U>edit<CR>
nnoremap <buffer> <silent> g? :help fugitive-:Gstatus<CR> nnoremap <buffer> <silent> g? :help fugitive-:Gstatus<CR>
nnoremap <buffer> <silent> <F1> :help fugitive-:Gstatus<CR> nnoremap <buffer> <silent> <F1> :help fugitive-:Gstatus<CR>