Closed johnomotani closed 2 years ago
So step into the last function on the given line?
So step into the last function on the given line?
Yes, I guess that would be it :+1:
This has been fixed in the latest version (might have to wait a bit for the registration to go through). The command to use is sl
.
When using Debugger.jl from the REPL, I often find I have a function call like
and want to step into
foo!()
. Often, stepping into the evaluations ofgetindex()
,getproperty()
, etc. just get in the way.After asking about this on Discourse (https://discourse.julialang.org/t/debugger-usage-step-over-evaluations-in-function-arguments-straight-into-the-function/77018) it seems the best current solution for this case is to use
se
to step over the evaluations in the arguments, and then finallys
to step into the function. When there are a lot of arguments, it becomes quite easy to miss the point where I've finally reached thefoo!()
call that I want to step in to.I think it would be nice to have a single command (like
sf
maybe, for step-into-function?) that would cover this case in a single command.