From f7ab6b15327454823c79b929fb5e61ea9b50201f Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Tue, 12 Apr 2022 18:06:22 +0530 Subject: [PATCH] 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. --- nvim/.config/nvim/after/plugin/fugitive.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/.config/nvim/after/plugin/fugitive.vim b/nvim/.config/nvim/after/plugin/fugitive.vim index 398795c..6851678 100644 --- a/nvim/.config/nvim/after/plugin/fugitive.vim +++ b/nvim/.config/nvim/after/plugin/fugitive.vim @@ -20,7 +20,7 @@ nnoremap gl :Git log --stat % nnoremap gL :Git log --stat -n 100 xnoremap gl :call git#git_log_range() xnoremap gL :call git#git_log_named_block() -nnoremap gm :0,3Git blame +nnoremap gm :0,3Git blamej nnoremap gM :call git#git_merge_origin() nnoremap gn :Git branch -m nnoremap go :call git#git_log_compare()