Function: cider-browse-ns--ns-list
cider-browse-ns--ns-list is a byte-compiled function defined in
cider-browse-ns.el.
Signature
(cider-browse-ns--ns-list BUFFER TITLE NSS)
Documentation
List the namespaces NSS in BUFFER.
Buffer is rendered with TITLE at the top and lists the namespaces as a tree.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-browse-ns.el
(defun cider-browse-ns--ns-list (buffer title nss)
"List the namespaces NSS in BUFFER.
Buffer is rendered with TITLE at the top and lists the namespaces as a tree."
(let ((dict (nrepl-dict)))
(dolist (ns nss)
(nrepl-dict-put dict ns (nrepl-dict "ns" "true")))
(cider-browse-ns--list buffer title dict nil)))