Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用Byebug进行调试时,有时我会评估终端中的一些变量,这会导致显示的行上下文“上升”。然后我想再次打印到屏幕上。我怎样才能做到这一点?
我想也许“显示”会这样做,但显然它会做其他事情。
我认为您正在寻找的list =内容基本上以与您第一次进入调试器时相同的方式向您显示您的位置(默认情况下 - 您可以关闭自动列表)。
list =
list 命令有几个不同的选项。list =围绕当前行居中显示。没有=它,它将显示接下来的 10 行。
=
你可以做l =或l=或list =。他们都是一样的。
l =
l=
参考 Shadwell 的回答和 barlop 的评论。