diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim index 617d259..e599b0b 100644 --- a/autoload/fugitive.vim +++ b/autoload/fugitive.vim @@ -1706,7 +1706,7 @@ function! fugitive#BufReadStatus() abort xnoremap P :execute StagePatch(line("'<"),line("'>")) nnoremap q :if bufnr('$') == 1quitelsebdeleteendif exe 'nnoremap ' nowait "gq :if bufnr('$') == 1quitelsebdeleteendif" - nnoremap R :exe ReloadStatus() + nnoremap R :echohl WarningMsgecho 'Reloading is automatic. Use :e to force'echohl NONE nnoremap U :echoerr 'Changed to X' nnoremap g :execute StageDelete(line('.'),v:count) xnoremap g :execute StageDelete(line("'<"),line("'>")-line("'<")+1) diff --git a/doc/fugitive.txt b/doc/fugitive.txt index 8f1ddd8..3e58e5e 100644 --- a/doc/fugitive.txt +++ b/doc/fugitive.txt @@ -385,9 +385,6 @@ Miscellaneous mappings ~ *fugitive_gq* *fugitive_q* gq Close the status buffer. - *fugitive_R* -R Reload the status buffer. - *fugitive_.* . Start a |:| command line with the file under the cursor prepopulated.