Function: cider-inspector-set-page-size
cider-inspector-set-page-size is an interactive and byte-compiled
function defined in cider-inspector.el.
Signature
(cider-inspector-set-page-size PAGE-SIZE)
Documentation
Set the page size in pagination mode to the specified PAGE-SIZE.
Current page will be reset to zero.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-inspector.el
(defun cider-inspector-set-page-size (page-size)
"Set the page size in pagination mode to the specified PAGE-SIZE.
Current page will be reset to zero."
(interactive (list (read-number "Page size: " cider-inspector-page-size)))
(cider-inspector--refresh-with-opts "page-size" page-size))