From d54568642bf422e14bda21507bec4f61e6d6fb15 Mon Sep 17 00:00:00 2001 From: Marc Brooks Date: Fri, 16 May 2025 05:38:56 -0500 Subject: [PATCH] fix(ui): Fix regression on Shift-Backspace not being handled (#454) This keystroke is valid and means "delete to the right" on MacOS. --- ui/src/keyboardMappings.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/src/keyboardMappings.ts b/ui/src/keyboardMappings.ts index 2c770b7..d191f50 100644 --- a/ui/src/keyboardMappings.ts +++ b/ui/src/keyboardMappings.ts @@ -243,6 +243,7 @@ export const keyDisplayMap: Record = { Escape: "esc", Tab: "tab", Backspace: "backspace", + "(Backspace)": "backspace", Enter: "enter", CapsLock: "caps lock", ShiftLeft: "shift",