From 1618f771ef3316dd3cf3ceb5185209f1ca1bf416 Mon Sep 17 00:00:00 2001 From: AntiMS Date: Thu, 30 Apr 2026 00:23:25 -0500 Subject: [PATCH] feat: delete key variant sequence --- input.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/input.go b/input.go index 012f620..b8bc15c 100644 --- a/input.go +++ b/input.go @@ -157,6 +157,8 @@ var hexCodes = map[string]keys.Key{ // support other backspace variants "1b08": {Code: keys.Backspace, AltPressed: true}, "08": {Code: keys.Backspace}, + // support other delete variants + "1b5b50": {Code: keys.Delete}, // Powershell "1b4f41": {Code: keys.Up, AltPressed: false},