VSCode: Is there a way to hide top action menu bar?

ecb*_*die 9 visual-studio-code

In VSCode, is there a way to hide the top action menu bar that appears in the tabs row? I rarely use it and I find that it crowds the already limited space available to browse through open tabs. Moreover, its presentation is also inconsistent, especially when split panes are activated.

I'm not sure if I am referring to this VSCode functionality properly, so here's a screenshot demonstrating what I'm talking about (file names had to be blurred out due to NDA reasons):

vscode 顶部操作菜单栏

Thank you.

Ign*_*ago 7

语境

它称为编辑器操作,在标准/本机 VSCode 设置中,您无法隐藏它。

自 2018 年 3 月以来,隐藏这个烦人栏的设置是VScode GitHub 上的一个悬而未决的问题

使固定

我感觉到你的痛苦。这对我有用:

  1. 安装自定义 UI 扩展
  2. 打开您的用户设置 JSON: cmd + shift + P/ctrl + shift + P 首选项:打开设置 (JSON)
  3. 添加此设置:
  "customizeUI.stylesheet": {
    ".editor-actions": "display: none !important;",
  },
Run Code Online (Sandbox Code Playgroud)

它不见了!