如何列出 emacs isearch-mode 中定义的键?
如何列出 emacs isearch-mode 中定义的键?
基于 Emacs:打印键绑定命令或列出所有键绑定 我已经尝试过 Ch m,但在 isearch 模式下无法执行此操作(Ch 和 Mx 似乎取消了它)
谢谢, -肖恩
How do I list the defined keys in emacs isearch-mode?
Based on Emacs: print key binding for a command or list all key bindings I have tried C-h m, but I cannot do that while in isearch-mode (C-h and M-x seem to cancel out of it)
Thanks,
-Shawn
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
尝试以下方法获取帮助页面:
Mx
isearch-mode-help
Try this to get the help page:
M-x
isearch-mode-help
我想你可以在 isearch-forward 的文档中找到所有内容。执行
Ch f isearch-forward
I think you can find everything in the documention of isearch-forward. Do
C-h f isearch-forward
您可以通过在搜索期间键入 Ch b 来获取绑定列表 (Emacs 23.2)。还可以使用 Ch m (对我有用)和 Ch k。
You can get a listing of the bindings by typing C-h b during search (Emacs 23.2). Also available are C-h m (which worked for me) and C-h k.
您可能还想尝试一下:
http://www.emacswiki.org/emacs/isearch %2b.el
http://www.emacswiki.org/emacs/IsearchPlus
这个库中的 Ch Mk (
describe-keymap
) 会让您知道任何键盘映射中的绑定(例如isearch-mode-map
):http://www.emacswiki.org/emacs/help-fns%2b.el
You might also want to try this:
http://www.emacswiki.org/emacs/isearch%2b.el
http://www.emacswiki.org/emacs/IsearchPlus
And C-h M-k (
describe-keymap
) in this library will let you know the bindings in any keymap (e.g.isearch-mode-map
):http://www.emacswiki.org/emacs/help-fns%2b.el
Cs Ch b
我使用 Cs Ch 发现的?
C-s C-h b
Which I found out using C-s C-h ?