在 Visual Studio 代码中调试时是否可以不显示调试边栏?

Is it possible to NOT show the Debug Side Bar when debugging in Visual Studio Code?

为了尝试为新用户(不认为自己是开发人员)简化 VS Code 的外观,我想永远隐藏调试侧边栏:

目前发生的情况是,每次我按下 F5 时,即使我用 cmd+B 隐藏了调试侧边栏,它也会弹出打开。有什么方法可以强制它保持隐藏状态?

在您的设置中查找

Debug: Open Debug

    Controls when the debug view should open.

并选择 neverOpen 选项。

或将 "debug.openDebug": "neverOpen", 放入您的 settings.json。