Function: nrepl-request:stdin
nrepl-request:stdin is a byte-compiled function defined in
nrepl-client.el.
Signature
(nrepl-request:stdin INPUT CALLBACK CONNECTION)
Documentation
Send a :stdin request with INPUT using CONNECTION.
Register CALLBACK as the response handler.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/nrepl-client.el
(defun nrepl-request:stdin (input callback connection)
"Send a :stdin request with INPUT using CONNECTION.
Register CALLBACK as the response handler."
(nrepl-send-request `("op" "stdin"
"stdin" ,input)
callback
connection))