You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In ESS[R], "C-<return>" evaluates the current line or region and steps to the next line (the function is ess-eval-region-or-line-visibly-and-step). I use that feature a lot when I'm debugging, and I'd like to use it in julia-snail. In julia-snail, "C-c C-l" evaluates the current line, but it doesn't step. I wrote a keyboard macro to do just the evaluate line and step portion for me and put this code in my init.el:
Could something like this be added to julia-snail? It would be nicer if the function could evaluate regions and step to the next code line (skipping over white space and comments).
Thanks for a great resource!
The text was updated successfully, but these errors were encountered:
Have you considered checking out Debugger.jl and binding something there? I recently found out about it, and 100% agree that such a stepping feature being either seperate, or attached to Debugger, would be an excellent addition.
A step debugger would, indeed, be a great addition to Snail. It's entirely possible that Debugger.jl is the necessary foundation on which to build. Patches welcome. :)
In ESS[R], "C-<return>" evaluates the current line or region and steps to the next line (the function is
ess-eval-region-or-line-visibly-and-step
). I use that feature a lot when I'm debugging, and I'd like to use it in julia-snail. In julia-snail, "C-c C-l" evaluates the current line, but it doesn't step. I wrote a keyboard macro to do just the evaluate line and step portion for me and put this code in my init.el:Could something like this be added to julia-snail? It would be nicer if the function could evaluate regions and step to the next code line (skipping over white space and comments).
Thanks for a great resource!
The text was updated successfully, but these errors were encountered: