From 22309fe8fd785f19abd92e308fb5876ebbe03e50 Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Tue, 26 May 2026 23:35:44 +0200 Subject: [PATCH] fix(blame): remove empty line after hunk line --- lua/git/blame.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/lua/git/blame.lua b/lua/git/blame.lua index f15defb..b6cee34 100644 --- a/lua/git/blame.lua +++ b/lua/git/blame.lua @@ -339,7 +339,6 @@ local function extract_commit_hunk(diff_text, orig_line) end local out = {} ---@type string[] table.insert(out, ("Hunk %d of %d"):format(target, #hunk_starts)) - table.insert(out, "") local start_idx = hunk_starts[target] local end_idx = hunk_starts[target + 1] and (hunk_starts[target + 1] - 1) or #lines