terminal: ignore ESC \ which enables ST mode since we're always in it

This commit is contained in:
Mitchell Hashimoto
2023-08-13 15:52:38 -07:00
parent aec342918b
commit a2310afa4e

View File

@ -850,6 +850,10 @@ pub fn Stream(comptime Handler: type) type {
try self.handler.escUnimplemented(action)
else
log.warn("unimplemented ESC action: {}", .{action}),
// Sets ST (string terminator). We don't have to do anything
// because our parser always accepts ST.
'\\' => {},
}
}
};