Function: cider-jack-in-clj
cider-jack-in-clj is an autoloaded, interactive and byte-compiled
function defined in cider.el.
Signature
(cider-jack-in-clj PARAMS)
Documentation
Start an nREPL server for the current project and connect to it.
PARAMS is a plist optionally containing :project-dir and :jack-in-cmd. With the prefix argument, allow editing of the jack in command; with a double prefix prompt for all these parameters.
Key Bindings
Aliases
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
;;;###autoload
(defun cider-jack-in-clj (params)
"Start an nREPL server for the current project and connect to it.
PARAMS is a plist optionally containing :project-dir and :jack-in-cmd.
With the prefix argument, allow editing of the jack in command; with a
double prefix prompt for all these parameters."
(interactive "P")
(let ((params (cider--update-params params)))
(cider--start-nrepl-server
params
(lambda (server-buffer)
(cider-connect-sibling-clj params server-buffer)))))