mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-06-12 14:48:27 +00:00
terminal: update parser to use new color parser and stream handler
This commit is contained in:
@@ -1565,7 +1565,11 @@ pub fn Stream(comptime Handler: type) type {
|
||||
|
||||
.color_operation => |v| {
|
||||
if (@hasDecl(T, "handleColorOperation")) {
|
||||
try self.handler.handleColorOperation(v.source, &v.operations, v.terminator);
|
||||
try self.handler.handleColorOperation(
|
||||
v.op,
|
||||
&v.requests,
|
||||
v.terminator,
|
||||
);
|
||||
return;
|
||||
} else log.warn("unimplemented OSC callback: {}", .{cmd});
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user