Remove Semantic Similarity Provider (#191039)

Now that RelatedInformationProvider has landed

ref https://github.com/microsoft/vscode/issues/190909
This commit is contained in:
Tyler James Leonhardt
2023-08-25 09:35:31 -07:00
committed by GitHub
parent 256c5aa956
commit aced05cf7c
13 changed files with 25 additions and 327 deletions

View File

@@ -381,10 +381,10 @@ 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': {
'workbench.commandPalette.experimental.enableNaturalLanguageSearch': {
'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."),
'description': localize('enableNaturalLanguageSearch', "Controls whether the command palette should include similar commands. You must have an extension installed that provides Natural Language support."),
'default': true
},
'workbench.quickOpen.closeOnFocusLost': {