From 76ec379410c009cdfdde52fc00e89c97bf745e3c Mon Sep 17 00:00:00 2001 From: Tyler James Leonhardt Date: Mon, 5 Jun 2023 11:55:52 -0700 Subject: [PATCH] Mark command palette settings as experimental (#184356) Mark command palette sessions as experimental I didn't realize we needed to tag them as well. This adds the tags. --- src/vs/workbench/browser/workbench.contribution.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/vs/workbench/browser/workbench.contribution.ts b/src/vs/workbench/browser/workbench.contribution.ts index 81b850a897c..f8d1715e921 100644 --- a/src/vs/workbench/browser/workbench.contribution.ts +++ b/src/vs/workbench/browser/workbench.contribution.ts @@ -350,11 +350,13 @@ const registry = Registry.as(ConfigurationExtensions.Con }, 'workbench.commandPalette.experimental.suggestCommands': { 'type': 'boolean', + tags: ['experimental'], 'description': localize('suggestCommands', "Controls whether the command palette should have a list of commonly used commands."), 'default': false }, 'workbench.commandPalette.experimental.useSemanticSimilarity': { 'type': 'boolean', + tags: ['experimental'], 'description': localize('useSemanticSimilarity', "Controls whether the command palette should include similar commands. You must have an extension installed that provides Semantic Similarity."), 'default': false },