diff options
Diffstat (limited to 'extension/src')
-rw-r--r-- | extension/src/commands.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/extension/src/commands.ts b/extension/src/commands.ts index 351c055d..433982ed 100644 --- a/extension/src/commands.ts +++ b/extension/src/commands.ts @@ -61,6 +61,9 @@ const commandsMap: { [command: string]: (...args: any) => any } = { }, "continue.toggleAuxiliaryBar": () => { vscode.commands.executeCommand("workbench.action.toggleAuxiliaryBar"); + debugPanelWebview?.postMessage({ + type: "focusContinueInputWithEdit", + }); }, "continue.quickTextEntry": async () => { const text = await vscode.window.showInputBox({ |