hook up IND index

This commit is contained in:
Mitchell Hashimoto
2022-06-24 17:53:17 -07:00
parent 55db659d2b
commit 51b2786a3b
3 changed files with 46 additions and 2 deletions

View File

@@ -674,6 +674,10 @@ pub fn reverseIndex(self: *Window) !void {
try self.terminal.reverseIndex();
}
pub fn index(self: *Window) !void {
self.terminal.index();
}
pub fn setTopAndBottomMargin(self: *Window, top: u16, bot: u16) !void {
self.terminal.setScrollingRegion(top, bot);
}