basic charset mapping, support configuration, print tests

This commit is contained in:
Mitchell Hashimoto
2022-08-27 09:42:05 -07:00
parent 75b63f3df3
commit 7626f194e9
5 changed files with 133 additions and 6 deletions

View File

@@ -1632,3 +1632,11 @@ pub fn setActiveStatusDisplay(
) !void {
self.terminal.status_display = req;
}
pub fn configureCharset(
self: *Window,
slot: terminal.CharsetSlot,
set: terminal.Charset,
) !void {
self.terminal.configureCharset(slot, set);
}