From 3b86618541c586c1229dc91ed7d8f5d2c971f815 Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Thu, 13 Oct 2022 17:27:08 +0200 Subject: [PATCH] vim:keys: Map `:{,B}Commits` in other modes too They support a range to show only commits that track the range. --- .config/vim/vimrc.d/40-keys.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/vim/vimrc.d/40-keys.vim b/.config/vim/vimrc.d/40-keys.vim index c5fcaf4..b8e3274 100644 --- a/.config/vim/vimrc.d/40-keys.vim +++ b/.config/vim/vimrc.d/40-keys.vim @@ -156,8 +156,8 @@ if (get(g:, 'loaded_fzf')) " git files that `git status` lists nmap gf :GFiles? " 'git log' and 'git buffer log' - nmap gl :Commits - nmap gbl :BCommits + map gl :Commits + map gbl :BCommits endif " Y should behave like D & C does