Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
How to disable debug windows automatically opening up when I hit a breakpoint in vscode?
In vscode, when I hit a breakpoint it automatically opens "Run and Debug" window. I don't want that because I am using a small screen (and that sidebar takes up space) and I don't always need to use functionality in that window (sometimes I just need to hover over variables in code to see their values). How can I disable it automatically opening up?
1 answer
The following users marked this post as Works for me:
User | Comment | Date |
---|---|---|
Vanity Slug ❤️ | (no comment) | Jan 22, 2025 at 16:35 |
In settings search for debug open
. Find setting called "Debug: Open Debug" and in drop down set it to neverOpen
.
0 comment threads