diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-03 22:15:06 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-03 22:15:06 -0700 |
commit | 0181d6236d8b74c80adb62648fd6571431cf3210 (patch) | |
tree | 44c6d4a94c692f5e3eb7f83c323ea91c48e30eba /extension/src/debugPanel.ts | |
parent | f4051a73b4961de26e7b8c4bf297de8eda57e39a (diff) | |
download | sncontinue-0181d6236d8b74c80adb62648fd6571431cf3210.tar.gz sncontinue-0181d6236d8b74c80adb62648fd6571431cf3210.tar.bz2 sncontinue-0181d6236d8b74c80adb62648fd6571431cf3210.zip |
feat: :lipstick: small ui tweaks, detached child process
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) { |