summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--extension/package.json3
-rw-r--r--extension/src/debugPanel.ts13
2 files changed, 1 insertions, 15 deletions
diff --git a/extension/package.json b/extension/package.json
index 884b518c..4eca6e68 100644
--- a/extension/package.json
+++ b/extension/package.json
@@ -35,8 +35,7 @@
"chat"
],
"activationEvents": [
- "onStartupFinished",
- "onView:continueGUIView"
+ "*"
],
"main": "./out/extension.js",
"browser": "./out/extension.js",
diff --git a/extension/src/debugPanel.ts b/extension/src/debugPanel.ts
index dd24a8d8..f97cf846 100644
--- a/extension/src/debugPanel.ts
+++ b/extension/src/debugPanel.ts
@@ -181,19 +181,6 @@ export function setupDebugPanel(
.getConfiguration("continue")
.get<boolean>("dataSwitch"),
});
-
- // // Listen for changes to server URL in settings
- // vscode.workspace.onDidChangeConfiguration((event) => {
- // if (event.affectsConfiguration("continue.serverUrl")) {
- // debugPanelWebview?.postMessage({
- // type: "onLoad",
- // vscMachineId: vscode.env.machineId,
- // apiUrl: getContinueServerUrl(),
- // sessionId,
- // });
- // }
- // });
-
break;
}
case "toggleDataSwitch": {