NEL next line

This commit is contained in:
Mitchell Hashimoto
2022-06-24 17:55:38 -07:00
parent 51b2786a3b
commit 4661b73d01
3 changed files with 18 additions and 0 deletions

View File

@@ -678,6 +678,11 @@ pub fn index(self: *Window) !void {
self.terminal.index();
}
pub fn nextLine(self: *Window) !void {
self.terminal.carriageReturn();
self.terminal.index();
}
pub fn setTopAndBottomMargin(self: *Window, top: u16, bot: u16) !void {
self.terminal.setScrollingRegion(top, bot);
}