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 help for key bindings in package-menu-mode.
You can view the full list of keys 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 help for key bindings in `package-menu-mode'.
You can view the full list of keys 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")))