terminal: DCS handler, XTGETTCAP parsing

This commit is contained in:
Mitchell Hashimoto
2023-09-27 11:04:32 -07:00
parent 5e3f5e6c50
commit 032fcee9ff
5 changed files with 231 additions and 3 deletions

View File

@@ -1199,6 +1199,11 @@ const StreamHandler = struct {
};
}
pub fn dcsHook(self: *StreamHandler, dcs: terminal.DCS) !void {
_ = self;
log.warn("DCS HOOK: {}", .{dcs});
}
pub fn apcStart(self: *StreamHandler) !void {
self.apc.start();
}