diff options
author | Robin Jarry <robin@jarry.cc> | 2024-02-19 21:24:05 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2024-02-19 22:29:52 +0100 |
commit | 782a17dfb056b526bb41858978302a11a9934337 (patch) | |
tree | 04bd2187e7c79f67fee183d0c4f1b7faf00d0d43 /lib | |
parent | db9ec31f7d80830b9395dc6dadd403ed65ef1e69 (diff) | |
download | aerc-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')
-rw-r--r-- | lib/ui/ui.go | 3 |
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 { |