summaryrefslogtreecommitdiff
path: root/extension/src/commands.ts
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-05-31 16:13:01 -0400
committerNate Sesti <sestinj@gmail.com>2023-05-31 16:13:01 -0400
commitdd5b9f6b7f08f178d6034a57f97faea38442eb0a (patch)
treeb18b4dbc9b6db8b033b9c48d832960b11f9ac687 /extension/src/commands.ts
parent22245d2cbf90daa9033d8551207aa986069d8b24 (diff)
downloadsncontinue-dd5b9f6b7f08f178d6034a57f97faea38442eb0a.tar.gz
sncontinue-dd5b9f6b7f08f178d6034a57f97faea38442eb0a.tar.bz2
sncontinue-dd5b9f6b7f08f178d6034a57f97faea38442eb0a.zip
checkpoint! protocol reform and it works now
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 18f08e31..aeeb4b4f 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.openNotebook();
},
"continue.focusContinueInput": async () => {
if (!debugPanelWebview) {
- await ideProtocolClient?.openNotebook();
+ await ideProtocolClient.openNotebook();
}
debugPanelWebview?.postMessage({
type: "focusContinueInput",