mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-05-19 11:31:19 +00:00
terminal: ignore SOH/STX, bash sends this for some reason
This commit is contained in:
@@ -76,7 +76,8 @@ pub fn Stream(comptime Handler: type) type {
|
||||
defer tracy.end();
|
||||
|
||||
switch (@as(ansi.C0, @enumFromInt(c))) {
|
||||
.NUL => {},
|
||||
// We ignore SOH/STX: https://github.com/microsoft/terminal/issues/10786
|
||||
.NUL, .SOH, .STX => {},
|
||||
|
||||
.ENQ => if (@hasDecl(T, "enquiry"))
|
||||
try self.handler.enquiry()
|
||||
|
||||
Reference in New Issue
Block a user