Skip to content

Commit 2f97f57

Browse files
committed
remove web extension kind from the setting schema
1 parent 8a4d10d commit 2f97f57

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/vs/workbench/contrib/remote/common/remote.contribution.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,11 @@ const extensionKindSchema: IJSONSchema = {
9797
type: 'string',
9898
enum: [
9999
'ui',
100-
'workspace',
101-
'web'
100+
'workspace'
102101
],
103102
enumDescriptions: [
104103
localize('ui', "UI extension kind. In a remote window, such extensions are enabled only when available on the local machine."),
105-
localize('workspace', "Workspace extension kind. In a remote window, such extensions are enabled only when available on the remote."),
106-
localize('web', "Web worker extension kind. Such an extension can execute in a web worker extension host.")
104+
localize('workspace', "Workspace extension kind. In a remote window, such extensions are enabled only when available on the remote.")
107105
],
108106
};
109107

0 commit comments

Comments
 (0)