fix: add missing renderer deinit() on exit

This commit is contained in:
CJ van den Berg 2024-05-17 21:18:54 +02:00
parent 444b064259
commit 6225944a7e
2 changed files with 2 additions and 3 deletions

View file

@ -61,8 +61,6 @@ pub fn init(a: std.mem.Allocator, handler_ctx: *anyopaque, no_alternate: bool) !
}
pub fn deinit(self: *Self) void {
self.vx.screen.tty.write(vaxis.ctlseqs.show_cursor);
self.vx.screen.tty.flush();
self.vx.deinit(self.a);
self.bracketed_paste_buffer.deinit();
self.event_buffer.deinit();