From fa1f5a41cbde708b66a4f82845abca05cbf36254 Mon Sep 17 00:00:00 2001 From: Yuta Katayama <8683947+yutkat@users.noreply.github.com> Date: Sat, 19 Jul 2025 14:53:29 +0900 Subject: [PATCH] fix: Update the show option to a simple style --- lua/git-rebase-auto-diff/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/git-rebase-auto-diff/init.lua b/lua/git-rebase-auto-diff/init.lua index 4c92e96..48339d5 100644 --- a/lua/git-rebase-auto-diff/init.lua +++ b/lua/git-rebase-auto-diff/init.lua @@ -46,7 +46,7 @@ function M.preview() end local cmd = "git --no-pager diff " .. hash .. "^!" if config.run_show then - cmd = "git --no-pager show --stat " .. hash .. " && echo '' && " .. cmd + cmd = "git --no-pager show --stat --patch " .. hash end require("git-rebase-auto-diff").run(cmd) end