mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-15 16:26:08 +03:00
terminal: ignore ESC \ which enables ST mode since we're always in it
This commit is contained in:
@ -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.
|
||||
'\\' => {},
|
||||
}
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user