From f09a6a35f4fe333c37b6a8771dcea42462e72a36 Mon Sep 17 00:00:00 2001 From: Raymond Zhao Date: Fri, 10 Dec 2021 11:31:32 -0800 Subject: [PATCH] Add category ids Ref microsoft/vscode#138253 --- configuration-sample/package.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/configuration-sample/package.json b/configuration-sample/package.json index 0b821e21..13e4d887 100644 --- a/configuration-sample/package.json +++ b/configuration-sample/package.json @@ -28,6 +28,7 @@ "contributes": { "configuration": [ { + "id": "widgetSamples", "title": "Settings Editor Widget Samples", "order": 2, "properties": { @@ -88,8 +89,8 @@ } }, { + "id": "configurationSamples", "title": "Configuration Sample", - "order": 1, "properties": { "conf.view.showOnWindowOpen": { "type": "string", @@ -117,6 +118,18 @@ "scope": "language-overridable" } } + }, + { + "id": "anotherCategory", + "title": "Another category", + "properties": { + "conf.settingsEditor.firstMisc": { + "type": "string" + }, + "conf.settingsEditor.secondMisc": { + "type": "string" + } + } } ], "commands": [