-
Notifications
You must be signed in to change notification settings - Fork 37
Open
Labels
Description
When I set a breakpoint in VSCode, then try to remove it during a debug session it continues to break.
In this current scenario where I observe that I set a breakpoint within a loop. After hitting the breakpoint I then remove it and continue execution. But the code continues to break at the line where the breakpoint used to be. VSCode no longer lists any breakpoints.
Seems to be a synchronization issue.
- Set a breakpoint inside a loop
- Run the code that trigger the breakpoint
- Remove the breakpoint from VSCode
- Continue execution (F5)
Expected behaviour is that the loop continues without hitting the removed breakpoint.
Observed behaviour is that the breakpoint continues to break.
Compare this to RubyMine which works as expected: