fix: add back missing space to clipboard palette hints

This commit is contained in:
CJ van den Berg 2025-11-05 20:38:24 +01:00
parent 8b50c7a3af
commit 477e232f19
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -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{});