You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/getstarted/settings.md
+18-12
Original file line number
Diff line number
Diff line change
@@ -1375,7 +1375,7 @@ Below are the Visual Studio Code default settings and their values. You can also
1375
1375
// The opacity fraction (0.2 to 1.0) to use for unfocused editors and terminals. This will only take effect when `accessibility.dimUnfocused.enabled` is enabled.
1376
1376
"accessibility.dimUnfocused.opacity": 0.75,
1377
1377
1378
-
// Controls the height of editor tabs. Also applies to the title control bar when `workbench.editor.showTabs` is disabled.
1378
+
// Controls the height of editor tabs. Also applies to the title control bar when `workbench.editor.showTabs` is not set to `multiple`.
1379
1379
"window.density.editorTabHeight": "default",
1380
1380
1381
1381
// Controls the behavior of clicking an activity bar icon in the workbench.
@@ -1446,8 +1446,8 @@ Below are the Visual Studio Code default settings and their values. You can also
1446
1446
// The default editor for files detected as binary. If undefined, the user will be presented with a picker.
1447
1447
"workbench.editor.defaultBinaryEditor": "",
1448
1448
1449
-
// Controls whether to maximize/restore the editor group when double clicking on a tab. This value is ignored when `workbench.editor.showTabs` is disabled.
// Controls whether to expand/restore or maximize/restore the editor group when double clicking on a tab. This value is ignored when `workbench.editor.showTabs` is not set to `multiple`.
// Controls whether a top border is drawn on tabs for editors that have unsaved changes. This value is ignored when `workbench.editor.showTabs` is disabled.
1467
+
// Controls whether a top border is drawn on tabs for editors that have unsaved changes. This value is ignored when `workbench.editor.showTabs` is not set to `multiple`.
1468
1468
"workbench.editor.highlightModifiedTabs": false,
1469
1469
1470
1470
// Enables use of editor history in language detection. This causes automatic language detection to favor languages that have been recently opened and allows for automatic language detection to operate with smaller inputs.
@@ -1513,7 +1513,7 @@ Below are the Visual Studio Code default settings and their values. You can also
1513
1513
// Controls the default direction of editors that are opened side by side (for example, from the Explorer). By default, editors will open on the right hand side of the currently active one. If changed to `down`, the editors will open below the currently active one.
// Controls the size of pinned editor tabs. Pinned tabs are sorted to the beginning of all opened tabs and typically do not close until unpinned. This value is ignored when `workbench.editor.showTabs` is disabled.
1516
+
// Controls the size of pinned editor tabs. Pinned tabs are sorted to the beginning of all opened tabs and typically do not close until unpinned. This value is ignored when `workbench.editor.showTabs` is not set to `multiple`.
1517
1517
// - normal: A pinned tab inherits the look of non pinned tabs.
1518
1518
// - compact: A pinned tab will show in a compact form with only icon or first letter of the editor name.
1519
1519
// - shrink: A pinned tab shrinks to a compact fixed size showing parts of the editor name.
@@ -1538,7 +1538,7 @@ Below are the Visual Studio Code default settings and their values. You can also
1538
1538
// Controls whether an editor is revealed in any of the visible groups if opened. If disabled, an editor will prefer to open in the currently active editor group. If enabled, an already opened editor will be revealed instead of opened again in the currently active editor group. Note that there are some cases where this setting is ignored, such as when forcing an editor to open in a specific group or to the side of the currently active group.
1539
1539
"workbench.editor.revealIfOpen": false,
1540
1540
1541
-
// Controls whether scrolling over tabs will open them or not. By default tabs will only reveal upon scrolling, but not open. You can press and hold the Shift-key while scrolling to change this behavior for that duration. This value is ignored when `workbench.editor.showTabs` is disabled.
1541
+
// Controls whether scrolling over tabs will open them or not. By default tabs will only reveal upon scrolling, but not open. You can press and hold the Shift-key while scrolling to change this behavior for that duration. This value is ignored when `workbench.editor.showTabs` is not set to `multiple`.
1542
1542
"workbench.editor.scrollToSwitchTabs": false,
1543
1543
1544
1544
// Preserves the most recent editor view state (such as scroll position) across all editor groups and restores that if no specific editor view state is found for the editor group.
@@ -1564,10 +1564,16 @@ Below are the Visual Studio Code default settings and their values. You can also
1564
1564
// - split: Splits the active editor group to equal parts.
1565
1565
"workbench.editor.splitSizing": "auto",
1566
1566
1567
-
// Controls the position of the editor's tabs close buttons, or disables them when set to 'off'. This value is ignored when `workbench.editor.showTabs` is disabled.
1568
-
"workbench.editor.tabCloseButton": "right",
1567
+
// Controls whether the tab close button is shown or not. This value is ignored when `workbench.editor.showTabs` is not set to `multiple`.
// Controls the size of editor tabs. This value is ignored when `workbench.editor.showTabs` is disabled.
1570
+
// Controls whether the unpin button is shown or not when a tab is pinned. This value is ignored when `workbench.editor.showTabs` is not set to `multiple`.
// Controls whether the actions on the tab are positioned to the right or left of the tab label. This value is ignored when `workbench.editor.showTabs` is not set to `multiple`.
1574
+
"workbench.editor.tabActionLocation": "right",
1575
+
1576
+
// Controls the size of editor tabs. This value is ignored when `workbench.editor.showTabs` is not set to `multiple`.
1571
1577
// - fit: Always keep tabs large enough to show the full editor label.
1572
1578
// - shrink: Allow tabs to get smaller when the available space is not enough to show all tabs at once.
1573
1579
// - fixed: Make all tabs the same size, while allowing them to get smaller when the available space is not enough to show all tabs at once.
@@ -1589,7 +1595,7 @@ Below are the Visual Studio Code default settings and their values. You can also
1589
1595
// - name: The name of the untitled file is not derived from the contents of the file.
// Controls whether tabs should be wrapped over multiple lines when exceeding available space or whether a scrollbar should appear instead. This value is ignored when `workbench.editor.showTabs` is disabled.
1598
+
// Controls whether tabs should be wrapped over multiple lines when exceeding available space or whether a scrollbar should appear instead. This value is ignored when `workbench.editor.showTabs` is not set to `multiple`.
1593
1599
"workbench.editor.wrapTabs": false,
1594
1600
1595
1601
// Configure glob patterns to editors (for example `"*.hex": "hexEditor.hexedit"`). These have precedence over the default behavior.
@@ -2021,8 +2027,8 @@ Below are the Visual Studio Code default settings and their values. You can also
2021
2027
// Controls whether turning on Zen Mode also hides the status bar at the bottom of the workbench.
2022
2028
"zenMode.hideStatusBar": true,
2023
2029
2024
-
// Controls whether turning on Zen Mode also hides workbench tabs.
2025
-
"zenMode.hideTabs": true,
2030
+
// Controls whether turning on Zen Mode shows workbench tabs.
2031
+
"zenMode.showTabs": "multiple",
2026
2032
2027
2033
// Controls whether a window should restore to Zen Mode if it was exited in Zen Mode.
0 commit comments