is there a way to NOT jump to the breakpoint in the editor? (Mulitple tabs)
Situation:
I'm debugging some related functions but all the functions are in the same file. So I have 3 instances of the same file opened in php storm ( each in their own window ).
When a break point is hit the editors will jump to the break point. I'm wanting to not do this.
What Im hoping to have happen:
* when the "Show execution point" icon is clicked in the debugger, then whichever editor is active will jump to the point, not all 3 or one random one.
WHY:
Because I have
* dashboard.php: function at line 100 on editor 1
* dashboard.php: function at line 1000 on editor 2
* dashboard.php: function at line 2000 on editor 3
so when im looking at the break point on editor 3 and expecting it to stop then editor 1 jumps to line 2000 and i have 2 potions the same I have to go re-align editor 1 after debugging back to line100 again.
Rather not have to if its an option.
请先登录再写评论。