Function: cider-browse-ns--group
cider-browse-ns--group is a byte-compiled function defined in
cider-browse-ns.el.
Signature
(cider-browse-ns--group FLAG)
Documentation
Set the group-by option to FLAG and re-renderthe buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-browse-ns.el
(defun cider-browse-ns--group (flag)
"Set the group-by option to FLAG and re-renderthe buffer."
(setq cider-browse-ns-group-by
(if (eql flag cider-browse-ns-group-by) nil flag))
(cider-browse-ns--render-buffer))