diff options
author | Ty Dunn <ty@tydunn.com> | 2023-06-05 09:30:51 +0200 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-06-05 09:30:51 +0200 |
commit | 897e6dc1239be26db74a933d10325b86ae55e5fb (patch) | |
tree | 1b462d1ab3bb2a2b0fc134ba92d3af7da2d72a57 /extension/src/commands.ts | |
parent | db0c493850d73c9d05f96ce1c5a04fc318c77422 (diff) | |
parent | 99d0cf12dcd1481e719e78483fc7df080dc95954 (diff) | |
download | sncontinue-897e6dc1239be26db74a933d10325b86ae55e5fb.tar.gz sncontinue-897e6dc1239be26db74a933d10325b86ae55e5fb.tar.bz2 sncontinue-897e6dc1239be26db74a933d10325b86ae55e5fb.zip |
addressing conflicts
Diffstat (limited to 'extension/src/commands.ts')
-rw-r--r-- | extension/src/commands.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extension/src/commands.ts b/extension/src/commands.ts index f0c1744b..c98cd3c3 100644 --- a/extension/src/commands.ts +++ b/extension/src/commands.ts @@ -61,7 +61,7 @@ const commandsMap: { [command: string]: (...args: any) => any } = { "continue.suggestionUp": suggestionUpCommand, "continue.acceptSuggestion": acceptSuggestionCommand, "continue.rejectSuggestion": rejectSuggestionCommand, - "continue.openDebugPanel": () => { + "continue.openContinueGUI": () => { ideProtocolClient.openGUI(); }, "continue.focusContinueInput": async () => { @@ -111,7 +111,7 @@ const commandsMap: { [command: string]: (...args: any) => any } = { vscode.window.showInformationMessage("The test passes!"); return; } - vscode.commands.executeCommand("continue.openDebugPanel").then(() => { + vscode.commands.executeCommand("continue.openContinueGUI").then(() => { setTimeout(() => { debugPanelWebview?.postMessage({ type: "traceback", |