Function: cider-inspector-toggle-sort-maps
cider-inspector-toggle-sort-maps is an interactive and byte-compiled
function defined in cider-inspector.el.
Signature
(cider-inspector-toggle-sort-maps)
Documentation
Toggle the sorting of maps in the inspector.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-inspector.el
(defun cider-inspector-toggle-sort-maps ()
"Toggle the sorting of maps in the inspector."
(interactive)
(customize-set-variable 'cider-inspector-sort-maps (not cider-inspector-sort-maps))
(cider-inspector--refresh-with-opts
"sort-maps" (if cider-inspector-sort-maps "true" "false")))