如何设置 Emacs gdb 使其在向上箭头上显示最近的命令?
如何设置 Emacs gdb,以便在按向上箭头时显示最新的命令?
在 Emacs gdb 中,它只会在缓冲区中排成一行。
我知道您始终可以在缓冲区中向后搜索并在那里选择最近的命令,但直接使用向上箭头获取命令会更方便。
How can I set Emacs gdb so that it shows the most recent command when I press arrow-up?
In the Emacs gdb it will just go one line up in the buffer.
I know you can always just search backwards in the buffer and select a recent command there, but getting the command directly with arrow-up would be more convenient.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Ch B 告诉我 C-up 绑定到
comint-previous-input
,其文档是One can rebind this to up< /kbd> (和 down 为了对称):
C-h B tell me that C-up is bound to
comint-previous-input
whose documentation isOne could rebind this to up (and down for symmetry) with:
请注意,您还可以使用 Mp (上一个命令)和 Mn (下一个命令)循环查看命令历史记录,这在您在终端中运行 Emacs 时非常有用,其中 C-up 和 C-down 可能不可用。
Notice that you can also cycle through the command history with M-p (previous command) and M-n (next command), which is useful when you run Emacs in the terminal where C-up and C-down may not be available.