diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-02 01:05:59 -0400 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-02 01:05:59 -0400 |
commit | 7f28abee0312c675e11e35ca9f2101ab2ef17c07 (patch) | |
tree | a5e83c40b42894f8cd50a4f76845e33715240394 /extension/src/continueIdeClient.ts | |
parent | f82ccddd3bc10093fea497ab15e8c1ae132ce66d (diff) | |
download | sncontinue-7f28abee0312c675e11e35ca9f2101ab2ef17c07.tar.gz sncontinue-7f28abee0312c675e11e35ca9f2101ab2ef17c07.tar.bz2 sncontinue-7f28abee0312c675e11e35ca9f2101ab2ef17c07.zip |
notebook -> gui
Diffstat (limited to 'extension/src/continueIdeClient.ts')
-rw-r--r-- | extension/src/continueIdeClient.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extension/src/continueIdeClient.ts b/extension/src/continueIdeClient.ts index 477d1420..ab890801 100644 --- a/extension/src/continueIdeClient.ts +++ b/extension/src/continueIdeClient.ts @@ -97,7 +97,7 @@ class IdeProtocolClient { this.openFile(data.filepath); // TODO: Close file break; - case "openNotebook": + case "openGUI": case "connected": break; default: @@ -133,17 +133,17 @@ class IdeProtocolClient { // ------------------------------------ // // Initiate Request - closeNotebook(sessionId: string) { + closeGUI(sessionId: string) { this.panels.get(sessionId)?.dispose(); this.panels.delete(sessionId); } - async openNotebook() { + async openGUI() { console.log("OPENING NOTEBOOK"); if (this.messenger === null) { console.log("MESSENGER IS NULL"); } - const resp = await this.messenger?.sendAndReceive("openNotebook", {}); + const resp = await this.messenger?.sendAndReceive("openGUI", {}); const sessionId = resp.sessionId; console.log("SESSION ID", sessionId); |