I know that breakpoints are added by line number, such as:
bp add "demo.jl":1
bp add "demo.jl":5
bp add "demo.jl":10
but they are removed by index, such as:
Therefore, is it possible to add a feature to remove breakpoints by line number? For example:
bp rm "demo.jl":1
bp rm "demo.jl":5
bp rm "demo.jl":10
or
bp rm line 1
bp rm line 5
bp rm line 10
If breakpoints can only be removed by index, I would need to list all breakpoints and manually find the corresponding index for a given line number. This process is a bit cumbersome.
Would it be possible to add a feature to remove breakpoints directly by line number?