parser: don't enable pixel mouse if the terminal explicitly says it doesn't support it

This commit is contained in:
CJ van den Berg 2024-05-23 19:34:12 +02:00 committed by Tim Culverhouse
parent 1c11333717
commit 473357f24a

View file

@ -405,7 +405,10 @@ pub fn parse(self: *Parser, input: []const u8, paste_allocator: ?std.mem.Allocat
// 4: permanently reset
switch (seq.params[0]) {
1016 => {
return .{ .event = .cap_sgr_pixels, .n = i + 1 };
switch (seq.params[1]) {
0, 4 => return .{ .event = null, .n = i + 1 },
else => return .{ .event = .cap_sgr_pixels, .n = i + 1 },
}
},
2027 => {
switch (seq.params[1]) {