nvim: after/plugin/fugitive: Automatically jump to the blame window

The blame window opens at the bottom of the current window by default.
Jump to it automatically.
This commit is contained in:
Sanchayan Maity 2022-04-12 18:06:22 +05:30
parent 0cc31e0c2f
commit f7ab6b1532
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ nnoremap <Leader>gl :Git log --stat %<CR>
nnoremap <Leader>gL :Git log --stat -n 100<CR>
xnoremap <Leader>gl :<C-U>call git#git_log_range()<CR>
xnoremap <Leader>gL :call git#git_log_named_block()<CR>
nnoremap <Leader>gm :0,3Git blame<CR>
nnoremap <Leader>gm :0,3Git blame<CR><C-w>j<CR>
nnoremap <Leader>gM :call git#git_merge_origin()<CR>
nnoremap <Leader>gn :Git branch -m<SPACE>
nnoremap <Leader>go :call git#git_log_compare()<CR>