From 61a8baf7aaddc8a7707ab7089a771c0742844fc7 Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Mon, 19 Aug 2024 12:25:48 -0400 Subject: [PATCH] feat(input): update kitty keyboard flag name --- input/kitty.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input/kitty.go b/input/kitty.go index 22920f35..f2e390ef 100644 --- a/input/kitty.go +++ b/input/kitty.go @@ -27,7 +27,7 @@ func (e KittyKeyboardEvent) IsReportAlternateKeys() bool { // IsReportAllKeys returns true if the ReportAllKeys flag is set. func (e KittyKeyboardEvent) IsReportAllKeys() bool { - return e&ansi.KittyReportAllKeys != 0 + return e&ansi.KittyReportAllKeysAsEscapeCodes != 0 } // IsReportAssociatedKeys returns true if the ReportAssociatedKeys flag is set.