Function: which-key-show-previous-page-cycle
which-key-show-previous-page-cycle is an autoloaded, interactive and
byte-compiled function defined in which-key.el.gz.
Signature
(which-key-show-previous-page-cycle &optional _)
Documentation
Show the previous page of keys, cycling from beginning to end.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/which-key.el.gz
;;;###autoload
(defun which-key-show-previous-page-cycle (&optional _)
"Show the previous page of keys, cycling from beginning to end."
(interactive)
(let ((which-key-inhibit t))
(which-key-turn-page -1)))