-
Notifications
You must be signed in to change notification settings - Fork 66
Freature request: Watch expressions #71
Comments
Unfortunately the 'watch' breakpoint types are not supported by DBGP protocol. (source)
|
Hmm, then how does Eclipse do it (Using xdebug with the PDT package)? |
@cstuder What you are talking about is a conditional breakpoint, you are able to define an expression for a breakpoint when to stop. For example you set a breakpoint in C:\wamp\www\wordpress\wp-settings.php on line 72 and you only want to stop the script when the expression
|
@martomo: No, we're talking about manually entered watch expressions. These expressions are evaluated every time we stop at a breakpoint: They can be very, very useful, especially when the local scope is getting out of hand. |
Enhanchement: Watch expressions are now supported. (Kindari/SublimeXdebug#71). Performance: Minimized amount of requests by setting 'max_depth' and 'max_children' on session start.
@cstuder I have added an initial commit martomo/SublimeTextXdebug@9484168 for this feature to SublimeTextXdebug, please let me know what you think. |
Add a way to set watch expressions. I work quite a bit with legacy code, and the context could hold several hundred variables. Watch expressions would be a welcomed feature to limit the variable list.
The text was updated successfully, but these errors were encountered: