edts
edts copied to clipboard
How step past breakpoints
I really like edts and am getting a lot of good out of it. I do, however, think it could stand a little more documentation.
I hope this isn't a dumb question. I'm using edts debugger integration. I set a breakpoint and execution stops there. Now, how to I cause it to proceed with execution?
+1
I agree, documentation could be better :)
In the meantime, while debugging: b - toggle breakpoint f - finish (keep running, ignore subsequent breakpoints) s - step into o - step over c - continue (keep running until next breakpoint, if any) q - quit debug mode (detach)
Btw, in Emacs, you can always run C-h b to see a list of all keybindings, split up by minor mode.