diff options
author | Ty Dunn <ty@tydunn.com> | 2023-06-18 19:24:28 -0700 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-06-18 19:24:28 -0700 |
commit | 8cf2962eb6cf29e9b151fbba4954facdfa03ca2e (patch) | |
tree | 3a00f33a8634ae84a0dafbdd3ced725c9650c39f /extension/src | |
parent | 3bf1432dbf41a0d697b5bd961718f593615ed396 (diff) | |
parent | ea8e812a9361a609c1d666bd518112196c6e64b0 (diff) | |
download | sncontinue-8cf2962eb6cf29e9b151fbba4954facdfa03ca2e.tar.gz sncontinue-8cf2962eb6cf29e9b151fbba4954facdfa03ca2e.tar.bz2 sncontinue-8cf2962eb6cf29e9b151fbba4954facdfa03ca2e.zip |
Merge branch 'main' into play-button
Diffstat (limited to 'extension/src')
-rw-r--r-- | extension/src/commands.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/extension/src/commands.ts b/extension/src/commands.ts index 5392a7a3..22e15c43 100644 --- a/extension/src/commands.ts +++ b/extension/src/commands.ts @@ -62,9 +62,7 @@ const commandsMap: { [command: string]: (...args: any) => any } = { "continue.acceptSuggestion": acceptSuggestionCommand, "continue.rejectSuggestion": rejectSuggestionCommand, "continue.focusContinueInput": async () => { - if (!debugPanelWebview) { - vscode.commands.executeCommand("continue.continueGUIView.focus"); - } + vscode.commands.executeCommand("continue.continueGUIView.focus"); debugPanelWebview?.postMessage({ type: "focusContinueInput", }); |