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
Send 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-20260822.1520/nrepl-client.el
(defun nrepl-sync-request:clone (connection &optional tooling)
"Send 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-sync-request `("op" "clone"
"client-name" ,nrepl-client-name
,@(when nrepl-client-version
`("client-version" ,nrepl-client-version)))
connection
:tooling tooling))