Function: which-key-toggle-docstrings
which-key-toggle-docstrings is an interactive and byte-compiled
function defined in which-key.el.gz.
Signature
(which-key-toggle-docstrings &optional _)
Documentation
Toggle the display of docstrings.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/which-key.el.gz
(defun which-key-toggle-docstrings (&optional _)
"Toggle the display of docstrings."
(interactive)
(unless (eq which-key-show-docstrings 'docstring-only)
(setq which-key-show-docstrings (null which-key-show-docstrings)))
(which-key-reload-key-sequence)
(which-key--create-buffer-and-show (which-key--current-prefix)))