summaryrefslogtreecommitdiff
path: root/extension/src/commands.ts
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-06-02 01:05:59 -0400
committerNate Sesti <sestinj@gmail.com>2023-06-02 01:05:59 -0400
commitad86eff7b06f0bfbed3b1cb362d83ec6a4348e45 (patch)
treeb7216e5a93f0d082331044bf27d9cb2311655421 /extension/src/commands.ts
parent769bf31da03f4c5d3145d885cff897109d63f246 (diff)
downloadsncontinue-ad86eff7b06f0bfbed3b1cb362d83ec6a4348e45.tar.gz
sncontinue-ad86eff7b06f0bfbed3b1cb362d83ec6a4348e45.tar.bz2
sncontinue-ad86eff7b06f0bfbed3b1cb362d83ec6a4348e45.zip
notebook -> gui
Diffstat (limited to 'extension/src/commands.ts')
-rw-r--r--extension/src/commands.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/extension/src/commands.ts b/extension/src/commands.ts
index aeeb4b4f..f0c1744b 100644
--- a/extension/src/commands.ts
+++ b/extension/src/commands.ts
@@ -62,11 +62,11 @@ const commandsMap: { [command: string]: (...args: any) => any } = {
"continue.acceptSuggestion": acceptSuggestionCommand,
"continue.rejectSuggestion": rejectSuggestionCommand,
"continue.openDebugPanel": () => {
- ideProtocolClient.openNotebook();
+ ideProtocolClient.openGUI();
},
"continue.focusContinueInput": async () => {
if (!debugPanelWebview) {
- await ideProtocolClient.openNotebook();
+ await ideProtocolClient.openGUI();
}
debugPanelWebview?.postMessage({
type: "focusContinueInput",