aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ui/ui.go
diff options
context:
space:
mode:
authorRobin Jarry <robin@jarry.cc>2024-02-19 21:24:05 +0100
committerRobin Jarry <robin@jarry.cc>2024-02-19 22:29:52 +0100
commit782a17dfb056b526bb41858978302a11a9934337 (patch)
tree04bd2187e7c79f67fee183d0c4f1b7faf00d0d43 /lib/ui/ui.go
parentdb9ec31f7d80830b9395dc6dadd403ed65ef1e69 (diff)
downloadaerc-782a17dfb056b526bb41858978302a11a9934337.tar.gz
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 <robin@jarry.cc> Acked-by: Tim Culverhouse <tim@timculverhouse.com>
Diffstat (limited to 'lib/ui/ui.go')
-rw-r--r--lib/ui/ui.go3
1 files changed, 2 insertions, 1 deletions
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 {