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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
import * as vscode from "vscode";
import IdeProtocolClient from "../continueIdeClient";
import { getContinueServerUrl } from "../bridge";
import { ContinueGUIWebviewViewProvider } from "../debugPanel";
import {
getExtensionVersion,
startContinuePythonServer,
} from "./environmentSetup";
import fetch from "node-fetch";
import { registerAllCodeLensProviders } from "../lang-server/codeLens";
import { registerAllCommands } from "../commands";
import registerQuickFixProvider from "../lang-server/codeActions";
const PACKAGE_JSON_RAW_GITHUB_URL =
"https://raw.githubusercontent.com/continuedev/continue/HEAD/extension/package.json";
export let extensionContext: vscode.ExtensionContext | undefined = undefined;
export let ideProtocolClient: IdeProtocolClient;
function getExtensionVersionInt(versionString: string): number {
return parseInt(versionString.replace(/\./g, ""));
}
function addPythonPathForConfig() {
// Add to python.analysis.extraPaths global setting so config.py gets LSP
if (
vscode.workspace.workspaceFolders?.some((folder) =>
folder.uri.fsPath.endsWith("continue")
)
) {
// Not for the Continue repo
return;
}
const pythonConfig = vscode.workspace.getConfiguration("python");
const analysisPaths = pythonConfig.get<string[]>("analysis.extraPaths");
const autoCompletePaths = pythonConfig.get<string[]>(
"autoComplete.extraPaths"
);
const pathToAdd = extensionContext?.extensionPath;
if (analysisPaths && pathToAdd && !analysisPaths.includes(pathToAdd)) {
analysisPaths.push(pathToAdd);
pythonConfig.update("analysis.extraPaths", analysisPaths);
}
if (
autoCompletePaths &&
pathToAdd &&
!autoCompletePaths.includes(pathToAdd)
) {
autoCompletePaths.push(pathToAdd);
pythonConfig.update("autoComplete.extraPaths", autoCompletePaths);
}
}
export async function activateExtension(context: vscode.ExtensionContext) {
extensionContext = context;
console.log("Using Continue version: ", getExtensionVersion());
try {
console.log(
"In workspace: ",
vscode.workspace.workspaceFolders?.[0].uri.fsPath
);
} catch (e) {
console.log("Error getting workspace folder: ", e);
}
// Register commands and providers
registerAllCodeLensProviders(context);
registerAllCommands(context);
registerQuickFixProvider();
addPythonPathForConfig();
// Start the server
const sessionIdPromise = (async () => {
await startContinuePythonServer();
console.log("Continue server started");
// Initialize IDE Protocol Client
const serverUrl = getContinueServerUrl();
ideProtocolClient = new IdeProtocolClient(
`${serverUrl.replace("http", "ws")}/ide/ws`,
context
);
return await ideProtocolClient.getSessionId();
})();
// Register Continue GUI as sidebar webview, and beginning a new session
const provider = new ContinueGUIWebviewViewProvider(sessionIdPromise);
context.subscriptions.push(
vscode.window.registerWebviewViewProvider(
"continue.continueGUIView",
provider,
{
webviewOptions: { retainContextWhenHidden: true },
}
)
);
// vscode.commands.executeCommand("continue.focusContinueInput");
}
|