save and restore cursor

This commit is contained in:
Mitchell Hashimoto
2022-06-25 10:56:41 -07:00
parent fb6800c8ce
commit 245b9642f9
3 changed files with 47 additions and 3 deletions

View File

@@ -781,3 +781,11 @@ pub fn tabClear(self: *Window, cmd: terminal.TabClear) !void {
pub fn tabSet(self: *Window) !void {
self.terminal.tabSet();
}
pub fn saveCursor(self: *Window) !void {
self.terminal.saveCursor();
}
pub fn restoreCursor(self: *Window) !void {
self.terminal.restoreCursor();
}