summaryrefslogtreecommitdiff
path: root/extension/src/activation
diff options
context:
space:
mode:
authorTuowen Zhao <ztuowen@gmail.com>2023-10-18 23:02:37 -0700
committerTuowen Zhao <ztuowen@gmail.com>2023-10-18 23:02:37 -0700
commit9168219b829aab55fefcb114937d3fc196548cde (patch)
tree4fa3fdb99d1820034ac1d97b66571a304446eeb4 /extension/src/activation
parent0865d37b6c343f86c48cd7f768781bba142b2007 (diff)
downloadsncontinue-9168219b829aab55fefcb114937d3fc196548cde.tar.gz
sncontinue-9168219b829aab55fefcb114937d3fc196548cde.tar.bz2
sncontinue-9168219b829aab55fefcb114937d3fc196548cde.zip
Cleanup
Diffstat (limited to 'extension/src/activation')
-rw-r--r--extension/src/activation/activate.ts2
-rw-r--r--extension/src/activation/environmentSetup.ts4
2 files changed, 3 insertions, 3 deletions
diff --git a/extension/src/activation/activate.ts b/extension/src/activation/activate.ts
index edd13137..91c8a989 100644
--- a/extension/src/activation/activate.ts
+++ b/extension/src/activation/activate.ts
@@ -92,7 +92,7 @@ export async function activateExtension(context: vscode.ExtensionContext) {
context.subscriptions.push(
vscode.window.registerWebviewViewProvider(
- "continue.continueGUIView",
+ "sncontinue.continueGUIView",
provider,
{
webviewOptions: { retainContextWhenHidden: true },
diff --git a/extension/src/activation/environmentSetup.ts b/extension/src/activation/environmentSetup.ts
index 4c47fba6..75a0d83a 100644
--- a/extension/src/activation/environmentSetup.ts
+++ b/extension/src/activation/environmentSetup.ts
@@ -84,7 +84,7 @@ function serverBinaryPath(): string {
}
export function getExtensionVersion() {
- const extension = vscode.extensions.getExtension("continue.continue");
+ const extension = vscode.extensions.getExtension("sambanova.sncontinue");
return extension?.packageJSON.version || "";
}
@@ -426,7 +426,7 @@ export async function startContinuePythonServer(redownload: boolean = true) {
// Check vscode settings for whether server is being run manually
const manuallyRunningServer =
vscode.workspace
- .getConfiguration("continue")
+ .getConfiguration("sncontinue")
.get<boolean>("manuallyRunningServer") || false;
const serverUrl = getContinueServerUrl();
if (