mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 19:44:25 +01:00
added split pane options to settings (#82888)
* added split pane options to settings
* moved option to workbench config
* updating description messages
* review changes
* 💄
This commit is contained in:
committed by
Benjamin Pasero
parent
aa28cc6e36
commit
0abf6cf816
@@ -60,6 +60,16 @@ import { isMacintosh, isWindows, isLinux, isWeb, isNative } from 'vs/base/common
|
||||
],
|
||||
'description': nls.localize({ comment: ['This is the description for a setting. Values surrounded by single quotes are not to be translated.'], key: 'tabSizing' }, "Controls the sizing of editor tabs.")
|
||||
},
|
||||
'workbench.editor.splitSizing': {
|
||||
'type': 'string',
|
||||
'enum': ['distribute', 'split'],
|
||||
'default': 'distribute',
|
||||
'enumDescriptions': [
|
||||
nls.localize('workbench.editor.splitSizingDistribute', "Splits all the editor groups to equal parts."),
|
||||
nls.localize('workbench.editor.splitSizingSplit', "Splits the active editor group to equal parts.")
|
||||
],
|
||||
'description': nls.localize({ comment: ['This is the description for a setting. Values surrounded by single quotes are not to be translated.'], key: 'splitSizing' }, "Controls the sizing of editor groups when splitting them.")
|
||||
},
|
||||
'workbench.editor.focusRecentEditorAfterClose': {
|
||||
'type': 'boolean',
|
||||
'description': nls.localize('focusRecentEditorAfterClose', "Controls whether tabs are closed in most recently used order or from left to right."),
|
||||
|
||||
Reference in New Issue
Block a user