Function: cider--start-nrepl-server
cider--start-nrepl-server is a byte-compiled function defined in
cider.el.
Signature
(cider--start-nrepl-server PARAMS &optional ON-PORT-CALLBACK)
Documentation
Start an nREPL server.
PARAMS is a plist optionally containing :project-dir and :jack-in-cmd. ON-PORT-CALLBACK (optional) is a function of one argument (server buffer) which is called by the process filter once the port of the connection has been determined.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defun cider--start-nrepl-server (params &optional on-port-callback)
"Start an nREPL server.
PARAMS is a plist optionally containing :project-dir and :jack-in-cmd.
ON-PORT-CALLBACK (optional) is a function of one argument (server buffer)
which is called by the process filter once the port of the connection has
been determined."
(nrepl-start-server-process
(plist-get params :project-dir)
(plist-get params :jack-in-cmd)
on-port-callback))