Function: which-key-turn-page

which-key-turn-page is a byte-compiled function defined in which-key.el.gz.

Signature

(which-key-turn-page DELTA)

Documentation

Show the next page of keys.

Source Code

;; Defined in /usr/src/emacs/lisp/which-key.el.gz
(defun which-key-turn-page (delta)
  "Show the next page of keys."
  (which-key-reload-key-sequence)
  (if which-key--last-try-2-loc
      (let ((which-key-side-window-location which-key--last-try-2-loc)
            (which-key--multiple-locations t))
        (which-key--show-page delta))
    (which-key--show-page delta))
  (which-key--start-paging-timer))