Function: which-key-setup-minibuffer

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

Signature

(which-key-setup-minibuffer)

Documentation

Set up minibuffer display.

Do not use this setup if you use the paging commands. Instead use which-key-setup-side-window-bottom, which is nearly identical but more functional.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/which-key.el.gz
;;;###autoload
(defun which-key-setup-minibuffer ()
  "Set up minibuffer display.
Do not use this setup if you use the paging commands.  Instead use
`which-key-setup-side-window-bottom', which is nearly identical
but more functional."
  (interactive)
  (which-key--setup-echo-keystrokes)
  (setq which-key-popup-type 'minibuffer
        which-key-show-prefix 'left))