Add setting description (#181277)

Could change in the future if we handle semantic similarity in core, but for now it's mentioned here.
This commit is contained in:
Tyler James Leonhardt
2023-05-01 15:06:39 -07:00
committed by GitHub
parent 0ef6ae5b59
commit 6f9bd01ded

View File

@@ -343,6 +343,11 @@ const registry = Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Con
'description': localize('suggestCommands', "Controls whether the command palette should have a list of commonly used commands."),
'default': false
},
'workbench.commandPalette.experimental.useSemanticSimilarity': {
'type': 'boolean',
'description': localize('useSemanticSimilarity', "Controls whether the command palette should include similar commands. You must have an extension installed that provides Semantic Similarity."),
'default': false
},
'workbench.quickOpen.closeOnFocusLost': {
'type': 'boolean',
'description': localize('closeOnFocusLost', "Controls whether Quick Open should close automatically once it loses focus."),