From 1cfa26ca4c455218f399fa87669c33d2ab87af33 Mon Sep 17 00:00:00 2001 From: Joshua Minor Date: Sun, 21 Nov 2021 15:40:45 -0800 Subject: Removed redundant --stat option. --- plugins/gitstatus.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/gitstatus.lua b/plugins/gitstatus.lua index bb1882c..2578862 100644 --- a/plugins/gitstatus.lua +++ b/plugins/gitstatus.lua @@ -58,7 +58,7 @@ core.add_thread(function() -- get diff local diff = exec({"git", "diff", "--numstat"}) if config.gitstatus.recurse_submodules and system.get_file_info(".gitmodules") then - local diff2 = exec({"git", "submodule", "foreach", "git diff --numstat --stat"}) + local diff2 = exec({"git", "submodule", "foreach", "git diff --numstat"}) diff = diff .. diff2 end -- cgit v1.2.3