From dfd337edf3d4fda9a5a4ca9ba5c3bc1490f6a890 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 9 Mar 2025 18:55:54 +0530 Subject: [PATCH] Better error message for some more unhandled OSC codes --- kitty/vt-parser.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kitty/vt-parser.c b/kitty/vt-parser.c index bc16ebaf5..90a783670 100644 --- a/kitty/vt-parser.c +++ b/kitty/vt-parser.c @@ -517,6 +517,9 @@ dispatch_osc(PS *self, uint8_t *buf, size_t limit, bool is_extended_osc) { START_DISPATCH DISPATCH_OSC_WITH_CODE(desktop_notify) END_DISPATCH + case 13: case 14: case 15: case 16: case 18: + REPORT_ERROR("Ignoring OSC 13,14,15,16 and 18 used for pointer and Textronic colors by XTerm"); break; + break; case 10: case 11: case 12: