Matlab-Editor-Plugin icon indicating copy to clipboard operation
Matlab-Editor-Plugin copied to clipboard

breakpointsViewer

Open michaelkonecny opened this issue 7 years ago • 4 comments

This is a feature request.

Analogically to bookmarksViewer, it would be nice to be able to view all breakpoints in a window.

One can get them now by typing dbstatus in the console, but that's really not very nice or easy to use.

Here's an example what it looks like in Visual Studio, where I find it really useful:

breakpoints (edit GY) Nice to have: dockable window

michaelkonecny avatar Mar 03 '17 17:03 michaelkonecny

(edit GY) Nice to have: dockable window

Yes. Dockable windows would be very nice to have overall, even for file structure, bookmark viewer and clipboard stack.

michaelkonecny avatar Mar 03 '17 17:03 michaelkonecny

  • com.mathworks.mde.editor.breakpoints.MatlabDebugger in mde.jar
  • #113

GavriYashar avatar Apr 29 '17 07:04 GavriYashar

d = com.mathworks.mde.editor.breakpoints.MatlabBreakpointUtils.getDebugger() d.getBreakpoints()

com.mathworks.mlservices.MatlabDebugServices.getStopIfErrorState() com.mathworks.mlservices.MatlabDebugServices.getStopIfWarningState() com.mathworks.mlservices.MatlabDebugServices.getStopIfNanInfState() com.mathworks.mlservices.MatlabDebugServices.MatlabStopIf.setStopIfError

GavriYashar avatar Mar 23 '18 23:03 GavriYashar

Display

  • [x] display breakpoints
    • [x] display line breakpoints
    • [x] display anonymous breakpoint
    • [x] display conditional breakpoint
    • [x] display disabled breakpoint
  • [ ] display stop if error
    • [ ] always
    • [ ] message id
  • [ ] display stop if warning
    • [ ] always
    • [ ] message id
  • [ ] display stop if NaN or inf
  • [ ] add some fancy icons

saving and restoring

  • [ ] save breakpoint and restore on startup
    • [ ] restore enabled
    • [ ] restore disabled
    • [ ] ignore

creation

basically the same list as display

GavriYashar avatar Mar 24 '18 12:03 GavriYashar