setting and clearing tab stops

This commit is contained in:
Mitchell Hashimoto
2022-06-24 18:15:14 -07:00
parent 4d2d4322f4
commit 090e580cc7
6 changed files with 76 additions and 1 deletions

View File

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