From 22ed9a32d70fa22308b41bfdd8e8cab1e6fb637e Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Tue, 17 Mar 2026 22:11:45 +0100 Subject: [PATCH] fix(symbol_palette): add indent to match highlights --- src/tui/tui.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tui/tui.zig b/src/tui/tui.zig index fa2e8a7..3d9a1ad 100644 --- a/src/tui/tui.zig +++ b/src/tui/tui.zig @@ -2419,7 +2419,7 @@ pub fn render_symbol( while (len > 0) : (len -= 1) { if (cbor.matchValue(&iter, cbor.extract(&index)) catch break) { const col = egc_chunk_width(symbol[0..@min(symbol.len, index)], 0, 1); - render_match_cell(self, 0, col + 2 + icon_width, theme_) catch break; + render_match_cell(self, 0, col + 2 + icon_width + indent, theme_) catch break; } else break; } return false;