Replies: 2 comments
-
I understand the request, but as I know most of debuggers like gdb moves to the |
Beta Was this translation helpful? Give feedback.
-
A little late, but I just stumbled accross this: For cases where the
Hope this helps someone. As an aside: In |
Beta Was this translation helpful? Give feedback.
-
When I have a line with two method calls (e.g. an inline conditional), I find it difficult to step into the 2nd method on that line.
What I'm experiencing is the following:
I'm only able to step into
#bar
if Istep
when I'm at theend
ofbaz?
, otherwise I miss my chance. I sometimes detect this scenario andstep
when I should, but it's not easy to remember.It would be ideal if when I go
next
after the last line ofbaz?
, instead of going toend
, I get thrown back into thebar if baz?
line, giving me the opportunity tostep
, this time intobar
.Beta Was this translation helpful? Give feedback.
All reactions