Show breakpoints in overview ruler#82787
Conversation
This makes life easier when working with breakpoints in large files. Introduce a new setting `editor.showBreakpointsInOverviewRuler` that controls whether this is enabled or not. This setting is `false` by default. Use maroon for breakpoint markers in the overview ruler to differentiate them from error markers. Closes microsoft#15104.
|
Great PR, thanks a lot! Once you tackle this I would be happy merging in the PR |
`debug.showBreakpointsInOverviewRuler`.
|
@isidorn Moved the setting to the debug section now. Please have a look. |
|
@anirudhrb this i great work. Thanks a lot!
Can you please tackle this and I will merge it in. THanks! |
1. Added a configuration change listener in breakpointEditorContribution that resets the decorations if debug.showBreakpointsInOverviewRuler changes. 2. Removed the color registry contribution for the breakpoint marker since it is tied to the breakpoint color which is not configurable today.
|
@isidorn Thanks for the feedback. I have implemented your suggestions. I am now able to see the effect of the setting change without re-opening the editor. Please have a look and let me know if something can be done in a better way. |
|
Looks great, thanks a lot for this PR |

This makes life easier when working with breakpoints in large files. Introduce a
new setting
editor.showBreakpointsInOverviewRulerthat controls whether thisis enabled or not. This setting is
falseby default. Use maroon for breakpointmarkers in the overview ruler to differentiate them from error markers.
Closes #15104.