From 604b27db1bf690e2ea99770a8f852670dde86c8b Mon Sep 17 00:00:00 2001 From: huszkacs Date: Thu, 20 May 2021 20:47:33 +0200 Subject: [PATCH] Fixes android screen-keyboard backspace issue. --- .../services/keybinding/common/macLinuxKeyboardMapper.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/workbench/services/keybinding/common/macLinuxKeyboardMapper.ts b/src/vs/workbench/services/keybinding/common/macLinuxKeyboardMapper.ts index b4062798117..cdc7586ccf1 100644 --- a/src/vs/workbench/services/keybinding/common/macLinuxKeyboardMapper.ts +++ b/src/vs/workbench/services/keybinding/common/macLinuxKeyboardMapper.ts @@ -993,6 +993,7 @@ export class MacLinuxKeyboardMapper implements IKeyboardMapper { || (keyCode === KeyCode.End) || (keyCode === KeyCode.PageDown) || (keyCode === KeyCode.PageUp) + || (keyCode === KeyCode.Backspace) ) { // "Dispatch" on keyCode for these key codes to workaround issues with remote desktoping software // where the scan codes appear to be incorrect (see https://github.com/microsoft/vscode/issues/24107)