From c75cb56572d99cb893ed4b472d4d4179e5efbfaa Mon Sep 17 00:00:00 2001 From: Jackson Kearl Date: Wed, 25 Jul 2018 10:28:19 -0700 Subject: [PATCH] Relax condition on select all --- src/vs/editor/browser/controller/coreCommands.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/editor/browser/controller/coreCommands.ts b/src/vs/editor/browser/controller/coreCommands.ts index 414cf185fe1..46a8671d6f4 100644 --- a/src/vs/editor/browser/controller/coreCommands.ts +++ b/src/vs/editor/browser/controller/coreCommands.ts @@ -1706,7 +1706,7 @@ registerCommand(new EditorOrNativeTextInputCommand({ editorHandler: CoreNavigationCommands.SelectAll, inputHandler: 'selectAll', id: 'editor.action.selectAll', - precondition: EditorContextKeys.focus, + precondition: EditorContextKeys.textInputFocus, kbOpts: { weight: CORE_WEIGHT, kbExpr: null, -- GitLab