Don't open Debug panel by default

后端 未结 3 2221
挽巷
挽巷 2021-02-18 13:44

Is there a configuration setting that prevents the Debug panels (Variables, Watch, Call Stack) and Debug Console

相关标签:
3条回答
  • 2021-02-18 14:03

    Just open .vscode/launch.json in your workspace and set "externalConsole": true to not use the VS Code built in console but the OS default one.

    0 讨论(0)
  • 2021-02-18 14:05

    If you set "internalConsoleOptions":"neverOpen" in .vscode/launch.json, the Debug Console does not open up when you start debugging.

    Issue on GitHub

    Terminology: The Debug Console is officially called Debug Console Panel, whereas the view opening on the left side is refered to as Debug Side Bar All about debugging in VS Code

    0 讨论(0)
  • 2021-02-18 14:11

    It is now possible using the debug.openDebug User Setting.

    You can set it to either:

    • neverOpen
    • openOnDebugBreak
    0 讨论(0)
提交回复
热议问题