Initial cut of seeded command palette (#171293)

* Initial cut of seeded command palette

* hook up setting and product.json entry
This commit is contained in:
Tyler James Leonhardt
2023-01-17 15:44:27 -08:00
committed by GitHub
parent 116d314e60
commit fc4fba3d93
5 changed files with 58 additions and 4 deletions

View File

@@ -333,6 +333,11 @@ const registry = Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Con
'description': localize('preserveInput', "Controls whether the last typed input to the command palette should be restored when opening it the next time."),
'default': false
},
'workbench.commandPalette.experimental.suggestCommands': {
'type': 'boolean',
'description': localize('suggestCommands', "Controls whether the command palette should have a list of commonly used commands."),
'default': false
},
'workbench.quickOpen.closeOnFocusLost': {
'type': 'boolean',
'description': localize('closeOnFocusLost', "Controls whether Quick Open should close automatically once it loses focus."),