commit 80996c2e2c5a0185cc6ce77c2cd18665d26d4041 (tree)
parent 238a5d8aafded66acdd4fa4a1956876d68e72bf0
Author: Tim Pope <code@tpope.net>
Date: Sun, 21 Jul 2019 12:24:55 -0400
Map c? and r? to show commit and rebase help
Diffstat:
2 files changed, 14 insertions(+), 6 deletions(-)
diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim
@@ -4887,14 +4887,14 @@ function! fugitive#MapJumps(...) abort
nnoremap <buffer> <silent> P :<C-U>exe 'Gedit ' . <SID>fnameescape(<SID>ContainingCommit().'^'.v:count1.<SID>Relative(':'))<CR>
nnoremap <buffer> <silent> ~ :<C-U>exe 'Gedit ' . <SID>fnameescape(<SID>ContainingCommit().'~'.v:count1.<SID>Relative(':'))<CR>
nnoremap <buffer> <silent> C :<C-U>exe 'Gedit ' . <SID>fnameescape(<SID>ContainingCommit())<CR>
-
- nnoremap <buffer> c- :Gcommit -
- nnoremap <buffer> c<Space> :Gcommit<Space>
- nnoremap <buffer> c<CR> :Gcommit<CR>
nnoremap <buffer> <silent> co :<C-U>echoerr 'Use CTRL-W sC'<CR>
nnoremap <buffer> <silent> cp :<C-U>echoerr 'Use gC'<CR>
nnoremap <buffer> <silent> gC :<C-U>exe 'Gpedit ' . <SID>fnameescape(<SID>ContainingCommit())<CR>
nnoremap <buffer> <silent> gc :<C-U>exe 'Gpedit ' . <SID>fnameescape(<SID>ContainingCommit())<CR>
+
+ nnoremap <buffer> c- :Gcommit -
+ nnoremap <buffer> c<Space> :Gcommit<Space>
+ nnoremap <buffer> c<CR> :Gcommit<CR>
nnoremap <buffer> <silent> ca :<C-U>Gcommit --amend<CR>
nnoremap <buffer> <silent> cc :<C-U>Gcommit<CR>
nnoremap <buffer> <silent> ce :<C-U>Gcommit --amend --no-edit<CR>
@@ -4906,6 +4906,8 @@ function! fugitive#MapJumps(...) abort
nnoremap <buffer> cs :<C-U>Gcommit --squash=<C-R>=<SID>SquashArgument()<CR>
nnoremap <buffer> cS :<C-U><Bar>Grebase --autosquash<C-R>=<SID>RebaseArgument()<CR><Home>Gcommit --squash=<C-R>=<SID>SquashArgument()<CR>
nnoremap <buffer> cA :<C-U>Gcommit --edit --squash=<C-R>=<SID>SquashArgument()<CR>
+ nnoremap <buffer> <silent> c? :<C-U>help fugitive_c<CR>
+
nnoremap <buffer> r- :Grebase -
nnoremap <buffer> r<Space> :Grebase<Space>
nnoremap <buffer> r<CR> :Grebase<CR>
@@ -4922,9 +4924,11 @@ function! fugitive#MapJumps(...) abort
nnoremap <buffer> <silent> rs :<C-U>Grebase --skip<CR>
nnoremap <buffer> <silent> re :<C-U>Grebase --edit-todo<CR>
nnoremap <buffer> <silent> ra :<C-U>Grebase --abort<CR>
+ nnoremap <buffer> <silent> r? :<C-U>help fugitive_r<CR>
+
nnoremap <buffer> . :<C-U> <C-R>=<SID>fnameescape(fugitive#Real(@%))<CR><Home>
xnoremap <buffer> . :<C-U> <C-R>=<SID>fnameescape(fugitive#Real(@%))<CR><Home>
- nnoremap <buffer> <silent> g? :help fugitive-mappings<CR>
+ nnoremap <buffer> <silent> g? :<C-U>help fugitive-mappings<CR>
endif
endfunction
diff --git a/doc/fugitive.txt b/doc/fugitive.txt
@@ -382,6 +382,8 @@ cS Create a `squash!` commit for the commit under the
cA Create a `squash!` commit for the commit under the
cursor and edit the message.
+c? Show this help.
+
*fugitive_r*
Rebase mappings ~
@@ -414,6 +416,8 @@ rm Perform an interactive rebase with the commit under
rd Perform an interactive rebase with the commit under
the cursor set to `drop`.
+r? Show this help.
+
*fugitive-misc-mappings*
Miscellaneous mappings ~
@@ -425,7 +429,7 @@ gq Close the status buffer.
cursor prepopulated.
*fugitive_g?*
-g? Open this help.
+g? Show help for |fugitive-mappings|.
*fugitive-global-mappings*
Global mappings ~