Variable: cider-jack-in-cmd

cider-jack-in-cmd is a buffer-local variable defined in cider.el.

Documentation

The custom command used to start a nrepl server.

This is used by `cider-jack-in`.

If this variable is set, its value will be used as the command to start the nrepl server instead of the default command inferred from the project type.

This allows for fine-grained control over the jack-in process. The value should be a string representing the command to start the nrepl server, such as "nbb nrepl-server".

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defvar-local cider-jack-in-cmd nil
  "The custom command used to start a nrepl server.
This is used by `cider-jack-in`.

If this variable is set, its value will be
used as the command to start the nrepl server
instead of the default command inferred from
the project type.

This allows for fine-grained control over the jack-in process.
The value should be a string representing the command to start
the nrepl server, such as \"nbb nrepl-server\".")