This thread contains a patchset. You're looking at the original emails,
but you may wish to use the patch review UI.
Review patch
3
3
[PATCH aerc] ui: enable kitty keyboard protocol
Enable kitty keyboard protocol when support is detected. This will
enable keybinds which traditionally have been unavailable due to
conflicting with other keys (C-i, C-m, C-[, etc).
Reported-by: Jonathan Dowland <jon+aerc-discuss@dow.land>
Signed-off-by: Tim Culverhouse <tim@timculverhouse.com>
---
lib/ui/ui.go | 3 + --
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/lib/ui/ui.go b/lib/ui/ui.go
index d63ebf36c4ca..43545197778e 100644
--- a/lib/ui/ui.go
+++ b/lib/ui/ui.go
@@ -49,8 +49,7 @@ var state struct {
func Initialize(content DrawableInteractive) error {
opts := vaxis.Options{
- DisableMouse: !config.Ui.MouseEnabled,
- DisableKittyKeyboard: true,
+ DisableMouse: !config.Ui.MouseEnabled,
}
vx, err := vaxis.New(opts)
if err != nil {
--
2.43.2
[aerc/patches] build success
On Mon Feb 19, 2024 at 12:22 PM GMT, Tim Culverhouse wrote:
> Enable kitty keyboard protocol when support is detected. This will
> enable keybinds which traditionally have been unavailable due to
> conflicting with other keys (C-i, C-m, C-[, etc).
>
> Reported-by: Jonathan Dowland <jon+aerc-discuss@dow.land >
> Signed-off-by: Tim Culverhouse <tim@timculverhouse.com >
Tested-by: Jonathan Dowland <jon@dow.land >
> ---
> lib/ui/ui.go | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/lib/ui/ui.go b/lib/ui/ui.go
> index d63ebf36c4ca..43545197778e 100644
> --- a/lib/ui/ui.go
> +++ b/lib/ui/ui.go
> @@ -49,8 +49,7 @@ var state struct {
>
> func Initialize(content DrawableInteractive) error {
> opts := vaxis.Options{
> - DisableMouse: !config.Ui.MouseEnabled,
> - DisableKittyKeyboard: true,
> + DisableMouse: !config.Ui.MouseEnabled,
> }
> vx, err := vaxis.New(opts)
> if err != nil {
Applied: [PATCH aerc] ui: enable kitty keyboard protocol
Tim Culverhouse <tim@timculverhouse.com > wrote:
> Enable kitty keyboard protocol when support is detected. This will
> enable keybinds which traditionally have been unavailable due to
> conflicting with other keys (C-i, C-m, C-[, etc).
>
> Reported-by: Jonathan Dowland <jon+aerc-discuss@dow.land >
> Signed-off-by: Tim Culverhouse <tim@timculverhouse.com >
> ---
Acked-by: Robin Jarry <robin@jarry.cc >
Applied, thanks.
To git@git.sr.ht:~rjarry/aerc
c4d5b604bcdf..d73cf33c2c6c master -> master