I've just installed delve to debug go code. I tried to add a few breakpoints but I couldn't find how to delete breakpoints. How do you remove a breakpoint you've set?
I found out how to remove a breakpoint in delve.
You can use the clear NUMBER or clearall
Examples:
Clear the break point 2.
clear 2
Clear all the break point.
clearall
In addition, in delve you can actually enter help to get a list of commands.