Function: cider-sync-request:ns-list
cider-sync-request:ns-list is a byte-compiled function defined in
cider-client.el.
Signature
(cider-sync-request:ns-list)
Documentation
Get a list of the available namespaces.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-client.el
(defun cider-sync-request:ns-list ()
"Get a list of the available namespaces."
(thread-first `("op" "ns-list"
"exclude-regexps" ,cider-filtered-namespaces-regexps)
(cider-nrepl-send-sync-request)
(nrepl-dict-get "ns-list")))