aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Anders <greg@gpanders.com>2025-02-05 08:24:27 -0600
committerChristian Clason <ch.clason+github@icloud.com>2025-03-16 12:03:45 +0100
commit466f20dd7039e1602c9382f76ac6471d9feb49b7 (patch)
treefe7fccccc29c84e55e78400d9970ad25e3b0127b
parent1862d3210d7fe8967b28afcb85f69701e6827580 (diff)
downloadrneovim-466f20dd7039e1602c9382f76ac6471d9feb49b7.tar.gz
rneovim-466f20dd7039e1602c9382f76ac6471d9feb49b7.tar.bz2
rneovim-466f20dd7039e1602c9382f76ac6471d9feb49b7.zip
refactor(tui): disable kitty key event reporting
Temporary measure for the stable release. Re-enable for nightly after 0.11 release.
-rw-r--r--src/nvim/tui/tui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c
index 7c93be844a..440747be76 100644
--- a/src/nvim/tui/tui.c
+++ b/src/nvim/tui/tui.c
@@ -299,7 +299,7 @@ void tui_set_key_encoding(TUIData *tui)
// Progressive enhancement flags:
// 0b01 (1) Disambiguate escape codes
// 0b10 (2) Report event types
- out(tui, S_LEN("\x1b[>3u"));
+ out(tui, S_LEN("\x1b[>1u"));
break;
case kKeyEncodingXterm:
out(tui, S_LEN("\x1b[>4;2m"));