diff --git a/lua/git/status_view.lua b/lua/git/status_view.lua index 2e1b223..fa8ed1d 100644 --- a/lua/git/status_view.lua +++ b/lua/git/status_view.lua @@ -466,10 +466,7 @@ local function action_stage() cwd = s.repo.worktree, on_exit = function(result) if result.code ~= 0 then - util.error( - "git add failed: %s", - vim.trim(result.stderr or "") - ) + util.error("git add failed: %s", vim.trim(result.stderr or "")) end end, })