Visual Studio Code:展开水平栏以滚动选项卡

Thx*_*Xth 9 visual-studio-code

我想知道 Visual Studio Code 中是否有一种方法可以放大我发现太小的选项卡滚动条。

图片 :

用于滚动选项卡的水平栏

Mar*_*ark 15

此问题已在 v1.44 中修复 - 将于 2020 年 3 月上旬发布。请参阅https://github.com/microsoft/vscode/pull/92720(允许用户使标题区域中的滚动条更大#92720)。和https://github.com/microsoft/vscode-docs/blob/vnext/release-notes/v1_44.md#new-setting-to-control-height-of-tabs-scrollbar

大标签滚动条

workbench.editor.titleScrollbarSizing:默认 | 大的

您可以将其设置为large.


小智 5

另一种方法:在 VSCODE 的设置中,归档到Workbench \xe2\x80\xba Editor: Title Scrollbar Sizing下。您可以将其设置为“大”而不是默认值。附图。看这里

\n


ili*_*ias 1

使用特别有意义的扩展的解决方法

(插入custom.css):

/*tab group scrollbar;*/
.monaco-workbench>.part.editor>.content .editor-group-container>.title.tabs>.tabs-and-actions-container>.monaco-scrollable-element .scrollbar,
.monaco-workbench>.part.editor>.content .editor-group-container>.title.tabs>.tabs-and-actions-container>.monaco-scrollable-element .scrollbar .slider {
    height: 20px !important;
}
Run Code Online (Sandbox Code Playgroud)

如何在 Visual Studio Code 中使滚动条更宽?