Function: nrepl-sync-request:clone

nrepl-sync-request:clone is a byte-compiled function defined in nrepl-client.el.

Signature

(nrepl-sync-request:clone CONNECTION &optional TOOLING)

Documentation

Sent a :clone request to create a new client session.

The request is dispatched via CONNECTION. Optional argument TOOLING Tooling is set to t if wanting the tooling session from CONNECTION.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/nrepl-client.el
(defun nrepl-sync-request:clone (connection &optional tooling)
  "Sent a :clone request to create a new client session.
The request is dispatched via CONNECTION.
Optional argument TOOLING Tooling is set to t if wanting the tooling session
from CONNECTION."
  (nrepl-send-sync-request `("op" "clone"
                             "client-name" "CIDER"
                             "client-version" ,cider-version)
                           connection
                           nil tooling))