Function: which-key-show-previous-page-no-cycle

which-key-show-previous-page-no-cycle is an autoloaded, interactive and byte-compiled function defined in which-key.el.gz.

Signature

(which-key-show-previous-page-no-cycle)

Documentation

Show previous page of keys if one exists.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/which-key.el.gz
;;;###autoload
(defun which-key-show-previous-page-no-cycle ()
  "Show previous page of keys if one exists."
  (interactive)
  (let ((which-key-inhibit t))
    (unless (which-key--on-first-page)
      (which-key-turn-page -1))))