From 782a17dfb056b526bb41858978302a11a9934337 Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Mon, 19 Feb 2024 21:24:05 +0100 Subject: revert: "ui: enable kitty keyboard protocol" This reverts commit d73cf33c2c6c3e564ce8aff04acc329a06eafc54. This breaks virtually all key bindings on foot. Almost zero ctrl- bindings work, and even in some cases, single key binds, like n don't register anymore. It looked harmless, but I should probably have tested before applying this. Signed-off-by: Robin Jarry Acked-by: Tim Culverhouse --- lib/ui/ui.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/ui/ui.go') diff --git a/lib/ui/ui.go b/lib/ui/ui.go index 43545197..d63ebf36 100644 --- a/lib/ui/ui.go +++ b/lib/ui/ui.go @@ -49,7 +49,8 @@ var state struct { func Initialize(content DrawableInteractive) error { opts := vaxis.Options{ - DisableMouse: !config.Ui.MouseEnabled, + DisableMouse: !config.Ui.MouseEnabled, + DisableKittyKeyboard: true, } vx, err := vaxis.New(opts) if err != nil { -- cgit