refactor(tui): disable kitty key event reporting

Temporary measure for the stable release. Re-enable for nightly after
0.11 release.
This commit is contained in:
Gregory Anders
2025-02-05 08:24:27 -06:00
committed by Christian Clason
parent 1862d3210d
commit 466f20dd70

View File

@@ -299,7 +299,7 @@ void tui_set_key_encoding(TUIData *tui)
// Progressive enhancement flags: // Progressive enhancement flags:
// 0b01 (1) Disambiguate escape codes // 0b01 (1) Disambiguate escape codes
// 0b10 (2) Report event types // 0b10 (2) Report event types
out(tui, S_LEN("\x1b[>3u")); out(tui, S_LEN("\x1b[>1u"));
break; break;
case kKeyEncodingXterm: case kKeyEncodingXterm:
out(tui, S_LEN("\x1b[>4;2m")); out(tui, S_LEN("\x1b[>4;2m"));