From 527a897584931cb82d3b18cf73d052bdcf31b47b Mon Sep 17 00:00:00 2001 From: Willow Barraco Date: Tue, 12 Sep 2023 10:15:33 +0200 Subject: [PATCH] rc/tools/git: enable to diff-jump As we require diff here, it make using git log -p very convenient to go to the source files. --- rc/tools/git.kak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc/tools/git.kak b/rc/tools/git.kak index 440b65719..21a066749 100644 --- a/rc/tools/git.kak +++ b/rc/tools/git.kak @@ -95,7 +95,7 @@ define-command -params 1.. \ diff) map_diff_goto_source=true; filetype=diff ;; show) map_diff_goto_source=true; filetype=git-log ;; show-branch) filetype=git-show-branch ;; - log) filetype=git-log ;; + log) map_diff_goto_source=true; filetype=git-log ;; status) filetype=git-status ;; *) return 1 ;; esac