summaryrefslogtreecommitdiff
path: root/extension/src/commands.ts
diff options
context:
space:
mode:
Diffstat (limited to 'extension/src/commands.ts')
-rw-r--r--extension/src/commands.ts5
1 files changed, 1 insertions, 4 deletions
diff --git a/extension/src/commands.ts b/extension/src/commands.ts
index c98cd3c3..5392a7a3 100644
--- a/extension/src/commands.ts
+++ b/extension/src/commands.ts
@@ -61,12 +61,9 @@ const commandsMap: { [command: string]: (...args: any) => any } = {
"continue.suggestionUp": suggestionUpCommand,
"continue.acceptSuggestion": acceptSuggestionCommand,
"continue.rejectSuggestion": rejectSuggestionCommand,
- "continue.openContinueGUI": () => {
- ideProtocolClient.openGUI();
- },
"continue.focusContinueInput": async () => {
if (!debugPanelWebview) {
- await ideProtocolClient.openGUI();
+ vscode.commands.executeCommand("continue.continueGUIView.focus");
}
debugPanelWebview?.postMessage({
type: "focusContinueInput",