Function: cider-jack-in-resolve-command
cider-jack-in-resolve-command is a byte-compiled function defined in
cider-jack-in.el.
Signature
(cider-jack-in-resolve-command PROJECT-TYPE)
Documentation
Determine the resolved file path to cider-jack-in-command.
Throws an error if PROJECT-TYPE is unknown.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-jack-in.el
(defun cider-jack-in-resolve-command (project-type)
"Determine the resolved file path to `cider-jack-in-command'.
Throws an error if PROJECT-TYPE is unknown."
(let* ((spec (cider--jack-in-tool project-type))
(command (cider--jack-in-tool-command spec))
(resolver (or (plist-get spec :resolver) #'cider--resolve-command)))
(when command
(funcall resolver command))))