From 8158f21992ea28a58ec1816788c22c87915dc4e4 Mon Sep 17 00:00:00 2001 From: Asher Date: Wed, 20 Sep 2023 01:45:38 -0800 Subject: [PATCH] Mark untrusted workspaces as supported It seems that if you do not use any files in the workspace then you can set this as true. This fixes an issue where you get "no view is registered with id" because the extension seems to be in a half-activated state where the activate function runs but the view does not exist. Probably a bug in VS Code but we might as well support untrusted workspaces anyway. --- package.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package.json b/package.json index 87c97580..a84004c8 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,11 @@ "extensionKind": [ "ui" ], + "capabilities": { + "untrustedWorkspaces": { + "supported": true + } + }, "categories": [ "Other" ],