Function: package-menu-quick-help

package-menu-quick-help is an interactive and byte-compiled function defined in package.el.gz.

Signature

(package-menu-quick-help)

Documentation

Show short key binding help for package-menu-mode.

The full list of keys can be viewed with C-h m (describe-mode).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/package.el.gz
(defun package-menu-quick-help ()
  "Show short key binding help for `package-menu-mode'.
The full list of keys can be viewed with \\[describe-mode]."
  (interactive nil package-menu-mode)
  (package--ensure-package-menu-mode)
  (message (mapconcat #'package--prettify-quick-help-key
                      package--quick-help-keys "\n")))