From 477e232f192ee61e40c53425abca7c9a56b424a9 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Wed, 5 Nov 2025 20:38:24 +0100 Subject: [PATCH] fix: add back missing space to clipboard palette hints --- src/tui/mode/overlay/clipboard_palette.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tui/mode/overlay/clipboard_palette.zig b/src/tui/mode/overlay/clipboard_palette.zig index fe85222..1e0c145 100644 --- a/src/tui/mode/overlay/clipboard_palette.zig +++ b/src/tui/mode/overlay/clipboard_palette.zig @@ -67,7 +67,7 @@ pub fn add_menu_entry(palette: *Type, entry: *Entry, matches: ?[]const usize) !v try hint.writer.print(" {d} lines", .{line_count}) else try hint.writer.print(" {d} {s}", .{ item.len, if (item.len == 1) "byte " else "bytes" }); - try hint.writer.print(":{d}", .{group_idx}); + try hint.writer.print(" :{d}", .{group_idx}); try cbor.writeValue(writer, hint.written()); try cbor.writeValue(writer, matches orelse &[_]usize{});