Function: isearch-describe-bindings

isearch-describe-bindings is an interactive and byte-compiled function defined in isearch.el.gz.

Signature

(isearch-describe-bindings)

Documentation

Show a list of all keys defined in Isearch mode, and their definitions.

This is like describe-bindings, but displays only Isearch keys.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/isearch.el.gz
(defun isearch-describe-bindings ()
  "Show a list of all keys defined in Isearch mode, and their definitions.
This is like `describe-bindings', but displays only Isearch keys."
  (interactive)
  (let ((display-buffer-overriding-action isearch--display-help-action))
    (with-help-window "*Help*"
      (with-current-buffer standard-output
	(princ "Isearch Mode Bindings:\n")
	(princ (substitute-command-keys "\\{isearch-mode-map}"))))))