mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-03 15:01:57 +01:00
* Add tabSizingFixedMinWidth setting (#185766) * Add forgotten case for wrapping tabs * address feedback --------- Co-authored-by: Benjamin Pasero <benjamin.pasero@gmail.com>
This commit is contained in:
@@ -150,10 +150,16 @@ const registry = Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Con
|
||||
],
|
||||
'markdownDescription': localize({ comment: ['This is the description for a setting. Values surrounded by single quotes are not to be translated.'], key: 'tabSizing' }, "Controls the size of editor tabs. This value is ignored when `#workbench.editor.showTabs#` is disabled.")
|
||||
},
|
||||
'workbench.editor.tabSizingFixedMinWidth': {
|
||||
'type': 'number',
|
||||
'default': 50,
|
||||
'minimum': 38,
|
||||
'markdownDescription': localize({ comment: ['This is the description for a setting. Values surrounded by single quotes are not to be translated.'], key: 'workbench.editor.tabSizingFixedMinWidth' }, "Controls the minimum width of tabs when `#workbench.editor.tabSizing#` size is set to `fixed`.")
|
||||
},
|
||||
'workbench.editor.tabSizingFixedMaxWidth': {
|
||||
'type': 'number',
|
||||
'default': 160,
|
||||
'minimum': 50,
|
||||
'minimum': 38,
|
||||
'markdownDescription': localize({ comment: ['This is the description for a setting. Values surrounded by single quotes are not to be translated.'], key: 'workbench.editor.tabSizingFixedMaxWidth' }, "Controls the maximum width of tabs when `#workbench.editor.tabSizing#` size is set to `fixed`.")
|
||||
},
|
||||
'workbench.editor.pinnedTabSizing': {
|
||||
|
||||
Reference in New Issue
Block a user