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
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
I think you can find everything in the documention of isearch-forward. Do C-h f isearch-forward
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.
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
):
C-s C-h b
Which I found out using C-s C-h ?