We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b2492b commit fee1b63Copy full SHA for fee1b63
nrepl-client.el
@@ -1032,12 +1032,16 @@ ADDITIONAL-PARAMS is a plist to be appended to the request message."
1032
connection
1033
tooling))
1034
1035
+(defvar cider-version)
1036
+
1037
(defun nrepl-sync-request:clone (connection &optional tooling)
1038
"Sent a :clone request to create a new client session.
1039
The request is dispatched via CONNECTION.
1040
Optional argument TOOLING Tooling is set to t if wanting the tooling session
1041
from CONNECTION."
- (nrepl-send-sync-request '("op" "clone")
1042
+ (nrepl-send-sync-request `("op" "clone"
1043
+ "client-name" "CIDER"
1044
+ "client-version" ,cider-version)
1045
1046
nil tooling))
1047
0 commit comments