Function: cider-inspector-prev-page
cider-inspector-prev-page is an interactive and byte-compiled function
defined in cider-inspector.el.
Signature
(cider-inspector-prev-page)
Documentation
Jump to the previous page when inspecting a paginated sequence/map.
Does nothing if already on the first page.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-inspector.el
(defun cider-inspector-prev-page ()
"Jump to the previous page when inspecting a paginated sequence/map.
Does nothing if already on the first page."
(interactive)
(cider-inspector--send-op "cider/inspect-prev-page"))