From bad26d48589a2d3b999169a1f0c15a58b7bcb010 Mon Sep 17 00:00:00 2001 From: Marc Brooks Date: Thu, 15 May 2025 15:59:08 -0500 Subject: [PATCH] fix(ui): Fix regression on Shift-Backspace not being handled 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",