fix: alight completion descriptions with Plane.print_right

This commit is contained in:
CJ van den Berg 2025-12-08 18:05:30 +01:00
parent bacbb47ae8
commit 6f633b0149
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -2140,7 +2140,7 @@ pub fn render_symbol(
var lines = std.mem.splitScalar(u8, description, '\n');
if (lines.next()) |desc| {
self.set_style(style_description);
_ = self.print_aligned_right(0, "{s} ", .{desc}) catch {};
_ = self.print_right(" {s} ", .{desc}) catch {};
}
var iter = matches_cbor;