Skip to content

Instantly share code, notes, and snippets.

@hex-ci
Last active April 13, 2020 06:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hex-ci/20c9be4b9a9b63fc2bb6d767b659121a to your computer and use it in GitHub Desktop.
Save hex-ci/20c9be4b9a9b63fc2bb6d767b659121a to your computer and use it in GitHub Desktop.
VSCode support multiline tabs. 让 VSCode 支持多行 Tabs.
  1. Windows 系统下,workbench.desktop.main.css 文件位置: [用户目录]\AppData\Local\Programs\Microsoft VS Code\resources\app\out\vs\workbench
  2. Mac 系统下,workbench.desktop.main.css 文件位置: /Applications/Visual Studio Code.app/Contents/Resources/app/out/vs/workbench
.monaco-workbench .part.editor>.content .editor-group-container>.title .tabs-container {
flex-wrap: wrap;
height: auto;
}
.monaco-workbench .part.editor>.content .editor-group-container>.title.tabs>.tabs-and-actions-container>.monaco-scrollable-element {
height: auto!important;
z-index: 11000;
}
.quick-input-widget {
z-index: 12000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment