Rails and Byebug - How can I re-display the current line context
I think you're looking for list =
which basically shows you where you are in the same manner as when you first drop into the debugger (by default - you can turn autolist off).
There are a few different options for the list command. list =
centres the display around the current line. Without the =
it will show the next 10 lines.