How do I list the defined keys in emacs isearch-mode?

Based on http://stackoverflow.com/questions/2845934/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

link|improve this question

feedback

5 Answers

up vote 3 down vote accepted

Try this to get the help page:

M-x isearch-mode-help

link|improve this answer
Great, this is exactly what I was looking for! – sligocki Sep 30 '10 at 21:47
feedback

I think you can find everything in the documention of isearch-forward. Do C-h f isearch-forward

link|improve this answer
Ah great, thanks! I didn't realize that help page would show me all the current keybindings. – sligocki Sep 30 '10 at 21:46
feedback

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.

link|improve this answer
feedback

C-s C-h b

Which I found out using C-s C-h ?

link|improve this answer
I cannot parse the output of that: Key translations: key binding --- ------- C-x Prefix Command C-x 8 iso-transl-ctl-x-8-map ^L `cua--ena-cua-keys-keymap' Minor Mode Bindings: key binding --- ------- C-c Prefix Command C-v yank C-x Prefix Command C-z undo ESC Prefix Command <remap> Prefix Command – sligocki Oct 1 '10 at 19:12
Hm, that didn't come out so well, but it has ^L randomly in the text and seems to list all keybindings in an odd order... – sligocki Oct 1 '10 at 19:13
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.