Question

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

Was it helpful?

Solution

Try this to get the help page:

M-x isearch-mode-help

OTHER TIPS

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.

C-s C-h b

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

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top