Function: cider-start-nrepl-server

cider-start-nrepl-server is an interactive and byte-compiled function defined in cider.el.

Signature

(cider-start-nrepl-server PARAMS)

Documentation

Start an nREPL server for the current project, but don't connect to it.

PARAMS is a plist optionally containing :project-dir and :jack-in-cmd. With the prefix argument, allow editing of the start server command; with a double prefix prompt for all these parameters.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defun cider-start-nrepl-server (params)
  "Start an nREPL server for the current project, but don't connect to it.
PARAMS is a plist optionally containing :project-dir and :jack-in-cmd.
With the prefix argument, allow editing of the start server command; with a
double prefix prompt for all these parameters."
  (interactive "P")
  (cider--start-nrepl-server (cider--update-params params)))