diff options
Diffstat (limited to 'extension/src/debugPanel.ts')
-rw-r--r-- | extension/src/debugPanel.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/extension/src/debugPanel.ts b/extension/src/debugPanel.ts index 66d22e24..e7568f0d 100644 --- a/extension/src/debugPanel.ts +++ b/extension/src/debugPanel.ts @@ -244,6 +244,13 @@ export function setupDebugPanel( setFocusedOnContinueInput(false); break; } + case "focusEditor": { + setFocusedOnContinueInput(false); + vscode.commands.executeCommand( + "workbench.action.focusActiveEditorGroup" + ); + break; + } case "withProgress": { // This message allows withProgress to be used in the webview if (data.done) { |