Map gr to jump to rebasing section

This commit is contained in:
Tim Pope 2019-07-21 15:26:58 -04:00
parent ac97fa3781
commit 76bd7d6cb4
2 changed files with 5 additions and 1 deletions

View File

@ -1796,6 +1796,7 @@ function! fugitive#BufReadStatus() abort
nnoremap <buffer> <silent> gs :<C-U>exe <SID>StageJump(v:count, 'Staged')<CR>
nnoremap <buffer> <silent> gp :<C-U>exe <SID>StageJump(v:count, 'Unpushed')<CR>
nnoremap <buffer> <silent> gP :<C-U>exe <SID>StageJump(v:count, 'Unpulled')<CR>
nnoremap <buffer> <silent> gr :<C-U>exe <SID>StageJump(v:count, 'Rebasing')<CR>
nnoremap <buffer> <silent> C :<C-U>Gcommit<CR>:echohl WarningMsg<Bar>echo ':Gstatus C is deprecated in favor of cc'<Bar>echohl NONE<CR>
nnoremap <buffer> <silent> a :<C-U>execute <SID>Do('Toggle',0)<CR>
nnoremap <buffer> <silent> i :<C-U>execute <SID>StageIntend(v:count1)<CR>
@ -2611,7 +2612,7 @@ endfunction
function! s:NextFileHunk(count) abort
for i in range(a:count)
call search('^[A-Z?] .\|^diff --\|^[0-9a-f]\{4,\} \|^@','W')
call search('^[A-Z?] .\|^diff --\|^\%(\l\{3,\} \)\=[0-9a-f]\{4,\} \|^@','W')
endfor
call s:StageReveal()
return '.'

View File

@ -346,6 +346,9 @@ gp Jump to "Unpushed" section.
*fugitive_gP*
gP Jump to "Unpulled" section.
*fugitive_gr*
gr Jump to "Rebasing" section.
*fugitive_c*
Commit mappings ~