You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If "set breakpoint" is clicked on a line with breakpoint, toggle it.
Note that it currently possible to set multiple breakpoints on one line in different columns.
Should we toggle breakpoint only is cursor is "near enough" to existing bp? ( this might be tricky, because "near enough" to me is "if set here, actual_position would be exactly the same" so it requires extra test "setBreakpoint").
Pseudo algorithm:
get breakpoints
set at current cursor position
if actual_position overlaps with existing breakpoint, delete both + delete overlapping breakpoint marker.
otherwise, add breakpoint marker
The text was updated successfully, but these errors were encountered:
@Pieter-Jan haven't looked at this for a long time, maybe will try to do over weekend
Also would be good to move to chrome remote debugging protocol since it's part of soon to become LTS node v6 - that way it would be possible to debug node & browser simultaneously
If "set breakpoint" is clicked on a line with breakpoint, toggle it.
Note that it currently possible to set multiple breakpoints on one line in different columns.
Should we toggle breakpoint only is cursor is "near enough" to existing bp? ( this might be tricky, because "near enough" to me is "if set here, actual_position would be exactly the same" so it requires extra test "setBreakpoint").
Pseudo algorithm:
The text was updated successfully, but these errors were encountered: