From b31f41f8cb99b3840032333b18d5734fb75ef6d0 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Fri, 13 Jan 2023 15:20:28 +0530 Subject: [PATCH] fish: functions/gdt: Disable pager for default difftool Now that we enable pager for difftool by default, we need to disable it when using the default difftool which is neovim. --- fish/.config/fish/functions/gdt.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fish/.config/fish/functions/gdt.fish b/fish/.config/fish/functions/gdt.fish index 29437f1..476c1de 100644 --- a/fish/.config/fish/functions/gdt.fish +++ b/fish/.config/fish/functions/gdt.fish @@ -1,3 +1,3 @@ function gdt - git difftool $argv + git --no-pager difftool $argv end