Reputation: 5578
I casually pressed a key, i don't know which one, i want to remove it from the view, i don't use VScode debugger at all.
I read the docs but it's unclear.
Upvotes: 2
Views: 4167
Reputation: 378
Search for debug in settings, disable "glyph margin", and all related settings, this will disable the option to make debugging dots, if you just want to remove them all but not disable adding them, use the answers above.
Upvotes: 2
Reputation: 5578
To remove all breakpoints (red dot) you need go to Command Palette -> Debug
and choose Remove all breakpoints
from dropdown list.
More is in
Docs
Upvotes: 0
Reputation: 1495
F9
or
Click on the editor margin
or
(Top Bar) Debug -> Toggle Breakpoint
or
(Icon on The left) Debug -> Breakpoint section -> Mouse Over -> Remove all breakpoints
should remove the breakpoint
Upvotes: 4