Function: cider-resolve--core-ns-name
cider-resolve--core-ns-name is a byte-compiled function defined in
cider-resolve.el.
Signature
(cider-resolve--core-ns-name)
Documentation
Return the core namespace name for the current connection.
Either "cljs.core" or "clojure.core", depending on the value of
cider-repl-type(var)/cider-repl-type(fun) in the connected REPL.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-resolve.el
(defun cider-resolve--core-ns-name ()
"Return the core namespace name for the current connection.
Either \"cljs.core\" or \"clojure.core\", depending on the value of
`cider-repl-type' in the connected REPL."
(if-let* ((repl (cider-current-repl)))
(with-current-buffer repl
(if (eq cider-repl-type 'cljs) "cljs.core" "clojure.core"))
"clojure.core"))