chore: apply formatting

This commit is contained in:
2026-05-26 17:30:18 +02:00
parent 914aa493ff
commit 428ded2c4c
12 changed files with 305 additions and 280 deletions
+2 -6
View File
@@ -169,8 +169,7 @@ local function read_git_config(path)
section = s
out[section] = out[section] or {}
elseif section then
local key, value =
trimmed:match("^(%S+)%s*=%s*(.-)$")
local key, value = trimmed:match("^(%S+)%s*=%s*(.-)$")
if key then
out[section][key] = value
end
@@ -225,10 +224,7 @@ function Repo:_fetch_status()
end
self.status = status.parse(result.stdout or "")
local change = {
paths = status.diff_entries(
prior_entries,
self.status.entries
),
paths = status.diff_entries(prior_entries, self.status.entries),
branch_changed = not vim.deep_equal(
prior_branch,
self.status.branch