Function: cider-jack-in-command
cider-jack-in-command is a byte-compiled function defined in cider.el.
Signature
(cider-jack-in-command PROJECT-TYPE)
Documentation
Determine the command cider-jack-in needs to invoke for the PROJECT-TYPE.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defun cider-jack-in-command (project-type)
"Determine the command `cider-jack-in' needs to invoke for the PROJECT-TYPE."
(pcase project-type
('lein cider-lein-command)
('clojure-cli cider-clojure-cli-command)
('babashka cider-babashka-command)
('shadow-cljs cider-shadow-cljs-command)
('gradle cider-gradle-command)
('nbb cider-nbb-command)
('basilisp cider-basilisp-command)
(_ (user-error "Unsupported project type `%S'" project-type))))