【发布时间】:2010-09-30 20:57:06
【问题描述】:
如何在 emacs isearch-mode 中列出已定义的键?
基于Emacs: print key binding for a command or list all key bindings,我尝试过 C-h m,但在 isearch 模式下我不能这样做(C-h 和 M-x 似乎取消了它)
谢谢, -肖恩
【问题讨论】:
标签: emacs key-bindings
如何在 emacs isearch-mode 中列出已定义的键?
基于Emacs: print key binding for a command or list all key bindings,我尝试过 C-h m,但在 isearch 模式下我不能这样做(C-h 和 M-x 似乎取消了它)
谢谢, -肖恩
【问题讨论】:
标签: emacs key-bindings
试试这个来获取帮助页面:
M-x isearch-mode-help
【讨论】:
我认为您可以在 isearch-forward 的文档中找到所有内容。做C-h f isearch-forward
【讨论】:
您可以通过在搜索期间键入 C-h b 来获取绑定列表(Emacs 23.2)。还可以使用 C-h m (对我有用)和 C-h k。
【讨论】:
C-s C-h b
我使用 C-s C-h 发现了什么?
【讨论】:
您可能还想试试这个:
http://www.emacswiki.org/emacs/isearch%2b.el
http://www.emacswiki.org/emacs/IsearchPlus
并且此库中的 C-h M-k (describe-keymap) 将让您知道任何键盘映射中的绑定(例如 isearch-mode-map):
【讨论】: