Function: cider--update-params

cider--update-params is a byte-compiled function defined in cider.el.

Signature

(cider--update-params PARAMS)

Documentation

Fill-in the passed in PARAMS plist needed to start an nREPL server.

Updates :project-dir and :jack-in-cmd. Also checks whether a matching session already exists.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defun cider--update-params (params)
  "Fill-in the passed in PARAMS plist needed to start an nREPL server.
Updates :project-dir and :jack-in-cmd.
Also checks whether a matching session already exists."
  (thread-first params
                (cider--update-project-dir)
                (cider--check-existing-session)
                (cider--update-jack-in-cmd)))