Function: help-quick-toggle

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

Signature

(help-quick-toggle)

Documentation

Toggle display of a window showing popular commands and their bindings.

This toggles on and off the display of the quick-help buffer, which shows popular commands and their bindings as produced by help-quick. You can click on a key binding shown in the quick-help buffer to display the documentation of the command bound to that key sequence.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/help.el.gz
(defun help-quick-toggle ()
  "Toggle display of a window showing popular commands and their bindings.
This toggles on and off the display of the quick-help buffer, which shows
popular commands and their bindings as produced by `help-quick'.
You can click on a key binding shown in the quick-help buffer to display
the documentation of the command bound to that key sequence."
  (interactive)
  (if (and-let* ((window (get-buffer-window "*Quick Help*")))
        (quit-window t window))
      ;; Clear the message we may have gotten from `C-h' and then
      ;; waiting before hitting `q'.
      (message "")
    (help-quick)))