Function: cider--update-cljs-init-function
cider--update-cljs-init-function is a byte-compiled function defined
in cider.el.
Signature
(cider--update-cljs-init-function PARAMS)
Documentation
Update repl type and any init PARAMS for cljs connections.
The updated params are:
:cider-repl-cljs-upgrade-pending nil if it is a cljs REPL, or t
when the init form is required to be sent to the REPL to switch
over to cljs.
:repl-init-form The form that can switch the REPL over to cljs.
:repl-init-function The fn that switches the REPL over to cljs.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defun cider--update-cljs-init-function (params)
"Update repl type and any init PARAMS for cljs connections.
The updated params are:
:cider-repl-cljs-upgrade-pending nil if it is a cljs REPL, or t
when the init form is required to be sent to the REPL to switch
over to cljs.
:repl-init-form The form that can switch the REPL over to cljs.
:repl-init-function The fn that switches the REPL over to cljs."
(with-current-buffer (or (plist-get params :--context-buffer)
(current-buffer))
(let* ((cljs-type (plist-get params :cljs-repl-type))
(repl-init-form (cider-cljs-repl-form cljs-type)))
(if (null repl-init-form)
(plist-put params :cider-repl-cljs-upgrade-pending nil)
(thread-first params
(plist-put :cider-repl-cljs-upgrade-pending t)
(plist-put :repl-init-function
(lambda ()
(cider--check-cljs cljs-type)
(cider-nrepl-send-request
(list "op" "eval"
"ns" (cider-current-ns)
"code" repl-init-form)
(cider-repl-handler (current-buffer)))
(when (and (buffer-live-p nrepl-server-buffer)
cider-offer-to-open-cljs-app-in-browser)
(cider--offer-to-open-app-in-browser nrepl-server-buffer))))
(plist-put :repl-init-form repl-init-form))))))