hook up delete lines

This commit is contained in:
Mitchell Hashimoto
2022-05-11 17:55:28 -07:00
parent 8a0d7a3494
commit b528208dfd
2 changed files with 12 additions and 0 deletions

View File

@@ -561,6 +561,10 @@ pub fn eraseChars(self: *Window, count: usize) !void {
try self.terminal.eraseChars(count);
}
pub fn deleteLines(self: *Window, count: usize) !void {
self.terminal.deleteLines(self.alloc, count);
}
pub fn reverseIndex(self: *Window) !void {
try self.terminal.reverseIndex(self.alloc);
}