implement VT

This commit is contained in:
Mitchell Hashimoto
2022-06-24 18:00:42 -07:00
parent 4661b73d01
commit 4d2d4322f4
3 changed files with 8 additions and 1 deletions

View File

@@ -642,7 +642,6 @@ pub fn setCursorRow(self: *Window, row: u16) !void {
}
pub fn setCursorPos(self: *Window, row: u16, col: u16) !void {
if (self.terminal.mode_origin) unreachable; // TODO
self.terminal.setCursorPos(row, col);
}