From 9f072e9b181995d307a19dae33c7161b9ee55ab0 Mon Sep 17 00:00:00 2001 From: FernandoAscencio <48699277+FernandoAscencio@users.noreply.github.com> Date: Mon, 15 May 2023 12:39:48 -0400 Subject: [PATCH] Update packages/core/src/browser/quick-input/quick-command-frontend-contribution.ts Co-authored-by: Vincent Fugnitto --- .../quick-input/quick-command-frontend-contribution.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/core/src/browser/quick-input/quick-command-frontend-contribution.ts b/packages/core/src/browser/quick-input/quick-command-frontend-contribution.ts index ebe0ea1329211..488e74a712dd4 100644 --- a/packages/core/src/browser/quick-input/quick-command-frontend-contribution.ts +++ b/packages/core/src/browser/quick-input/quick-command-frontend-contribution.ts @@ -64,5 +64,10 @@ export class QuickCommandFrontendContribution implements CommandContribution, Ke keybinding: 'esc', when: 'inQuickOpen' }); + keybindings.registerKeybinding({ + command: 'workbench.action.closeQuickOpen', + keybinding: 'shift+esc', + when: 'inQuickOpen' + }); } }