begin string formatting

This commit is contained in:
Jeeves 2024-04-05 17:08:08 -06:00
parent 4d2034d0e7
commit 5e7c8bdae7
2 changed files with 50 additions and 3 deletions

View file

@ -88,7 +88,7 @@ pub const Terminal = struct {
}
pub fn cursorLeft(self: *Terminal) !void {
try self.info.writeString(.cursor_left, self.tty.writer());
try self.info.writeString(.cursor_left, self.tty.writer(), &[_]u32{});
// try self.info.cursorLeft(self.tty.writer());
}