fixing more bugs

This commit is contained in:
Mitchell Hashimoto
2022-05-21 20:39:20 -07:00
parent 02962d1437
commit b47f2e6eef
4 changed files with 62 additions and 13 deletions

View File

@@ -664,7 +664,7 @@ pub fn insertLines(self: *Window, count: usize) !void {
}
pub fn deleteLines(self: *Window, count: usize) !void {
self.terminal.deleteLines(self.alloc, count);
self.terminal.deleteLines(count);
}
pub fn reverseIndex(self: *Window) !void {