Fix #185858: Add option to enable/disable editor group maximization on double clicking tab title (#185966)

* Add option to enable/disable editor group maximization on double clicking tab title (#185858)

* update description

---------

Co-authored-by: Benjamin Pasero <benjamin.pasero@microsoft.com>
This commit is contained in:
hsfzxjy
2023-06-26 22:51:54 +08:00
committed by GitHub
parent f3d8406837
commit 6f25393ada
4 changed files with 10 additions and 1 deletions

View File

@@ -282,6 +282,11 @@ const registry = Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Con
'default': false,
'description': localize('centeredLayoutDynamicWidth', "Controls whether the centered layout tries to maintain constant width when the window is resized.")
},
'workbench.editor.doubleClickTabToToggleEditorGroupSizes': {
'type': 'boolean',
'default': true,
'markdownDescription': localize({ comment: ['This is the description for a setting. Values surrounded by single quotes are not to be translated.'], key: 'doubleClickTabToToggleEditorGroupSizes' }, "Controls whether to maximize/restore the editor group when double clicking on a tab. This value is ignored when `#workbench.editor.showTabs#` is disabled.")
},
'workbench.editor.limit.enabled': {
'type': 'boolean',
'default': false,