Function: which-key-show-keymap

which-key-show-keymap is an autoloaded, interactive and byte-compiled function defined in which-key.el.gz.

Signature

(which-key-show-keymap KEYMAP &optional NO-PAGING)

Documentation

Show the top-level bindings in KEYMAP using which-key.

KEYMAP is selected interactively from all available keymaps.

If NO-PAGING is non-nil, which-key will not intercept subsequent keypresses for the paging functionality.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/which-key.el.gz
;;;###autoload
(defun which-key-show-keymap (keymap &optional no-paging)
  "Show the top-level bindings in KEYMAP using which-key.
KEYMAP is selected interactively from all available keymaps.

If NO-PAGING is non-nil, which-key will not intercept subsequent
keypresses for the paging functionality."
  (interactive (list (which-key--read-keymap)))
  (which-key--show-keymap (symbol-name keymap)
                          (symbol-value keymap)
                          nil nil no-paging))