summaryrefslogtreecommitdiff
path: root/extension
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-06-27 11:42:09 -0700
committerNate Sesti <sestinj@gmail.com>2023-06-27 11:42:09 -0700
commitbf998a752a547485189f5ac1dc415d7ec475099e (patch)
treec47db0ce7cf8be5524103eb62e8f3843ef5b3d99 /extension
parentc3106d3540efbf48de694ac9b9294d56b520493a (diff)
downloadsncontinue-bf998a752a547485189f5ac1dc415d7ec475099e.tar.gz
sncontinue-bf998a752a547485189f5ac1dc415d7ec475099e.tar.bz2
sncontinue-bf998a752a547485189f5ac1dc415d7ec475099e.zip
post-merge fixes
Diffstat (limited to 'extension')
-rw-r--r--extension/src/activation/activate.ts15
1 files changed, 13 insertions, 2 deletions
diff --git a/extension/src/activation/activate.ts b/extension/src/activation/activate.ts
index 0c92f095..df8b6871 100644
--- a/extension/src/activation/activate.ts
+++ b/extension/src/activation/activate.ts
@@ -24,8 +24,19 @@ export async function activateExtension(
registerAllCodeLensProviders(context);
registerAllCommands(context);
- // vscode.window.registerWebviewViewProvider("continue.continueGUIView", setupDebugPanel);
- await startContinuePythonServer();
+ await new Promise((resolve, reject) => {
+ vscode.window.withProgress(
+ {
+ location: vscode.ProgressLocation.Notification,
+ title: "Starting Continue Server...",
+ cancellable: false,
+ },
+ async (progress, token) => {
+ await startContinuePythonServer();
+ resolve(null);
+ }
+ );
+ });
const serverUrl = getContinueServerUrl();
ideProtocolClient = new IdeProtocolClient(