Function: cider-need-input--prompt
cider-need-input--prompt is a byte-compiled function defined in
cider-client.el.
Signature
(cider-need-input--prompt REPL)
Documentation
Return the stdin minibuffer prompt for REPL.
When the session has more than one connection, name REPL so it's clear which evaluation is waiting for input.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-client.el
(defun cider-need-input--prompt (repl)
"Return the stdin minibuffer prompt for REPL.
When the session has more than one connection, name REPL so it's clear which
evaluation is waiting for input."
(if (and (bufferp repl) (cdr (cider-repls)))
(format "Stdin for %s (C-c C-d = EOF, C-c C-c = cancel): " (buffer-name repl))
"Stdin (C-c C-d = EOF, C-c C-c = cancel): "))