summaryrefslogtreecommitdiff
path: root/extension/src/extension.ts
blob: 1f9f7914fecc3aba83766e0a9b5e8241d48285cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
 * This is the entry point for the extension.
 */

import * as vscode from "vscode";
import {
  isPythonEnvSetup,
  startContinuePythonServer,
} from "./activation/environmentSetup";

async function dynamicImportAndActivate(context: vscode.ExtensionContext) {
  const { activateExtension } = await import("./activation/activate");
  await activateExtension(context);
}

export function activate(context: vscode.ExtensionContext) {
  // Only show progress if we have to setup
  vscode.window.withProgress(
    {
      location: vscode.ProgressLocation.Notification,
      title: "Setting up Continue extension...",
      cancellable: false,
    },
    async () => {
      dynamicImportAndActivate(context);
    }
  );
}