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 | 5311a5b7e8e4322690b5f0b85a839bfa1caa1926 (patch) | |
tree | 236b1699f987ff90f89d905ba4ded7e49b3b8d96 /extension/src | |
parent | d3f76defe286df20550cbcc87679b56d9f6c72c2 (diff) | |
parent | 8aa8e0b5c8402014b01f6ea6ce2e3d686f3c64b2 (diff) | |
download | sncontinue-5311a5b7e8e4322690b5f0b85a839bfa1caa1926.tar.gz sncontinue-5311a5b7e8e4322690b5f0b85a839bfa1caa1926.tar.bz2 sncontinue-5311a5b7e8e4322690b5f0b85a839bfa1caa1926.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", }); |