mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-16 00:36:07 +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)
|
try self.handler.escUnimplemented(action)
|
||||||
else
|
else
|
||||||
log.warn("unimplemented ESC action: {}", .{action}),
|
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