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.
This commit is contained in:
Tyler James Leonhardt
2023-06-05 11:55:52 -07:00
committed by GitHub
parent d5c63ca5f0
commit 76ec379410

View File

@@ -350,11 +350,13 @@ const registry = Registry.as<IConfigurationRegistry>(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
},