Function: cider-start-of-next-prompt
cider-start-of-next-prompt is a byte-compiled function defined in
cider-repl.el.
Signature
(cider-start-of-next-prompt POINT)
Documentation
Return the position of the first char of the next prompt from POINT.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider-start-of-next-prompt (point)
"Return the position of the first char of the next prompt from POINT."
(let ((next-prompt-or-input (next-single-char-property-change point 'field)))
(if (eq (get-char-property next-prompt-or-input 'field) 'cider-repl-prompt)
next-prompt-or-input
(next-single-char-property-change next-prompt-or-input 'field))))