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-render the buffer.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-browse-ns.el
(defun cider-browse-ns--group (flag)
  "Set the group-by option to FLAG and re-render the buffer."
  (setq cider-browse-ns-group-by
        (if (eql flag cider-browse-ns-group-by) nil flag))
  (cider-browse-ns--render-buffer))