Function: cider-resolve-core-ns
cider-resolve-core-ns is a byte-compiled function defined in
cider-resolve.el.
Signature
(cider-resolve-core-ns)
Documentation
Return a dict of the core namespace for current connection.
This will be clojure.core or cljs.core depending on the return value of the
function cider-repl-type(var)/cider-repl-type(fun).
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-resolve.el
(defun cider-resolve-core-ns ()
"Return a dict of the core namespace for current connection.
This will be clojure.core or cljs.core depending on the return value of the
function `cider-repl-type'."
(when-let* ((repl (cider-current-repl)))
(with-current-buffer repl
(cider-resolve--get-in (if (eq cider-repl-type 'cljs)
"cljs.core"
"clojure.core")))))