Function: cider-repl--at-prompt-start-p
cider-repl--at-prompt-start-p is a byte-compiled function defined in
cider-repl.el.
Signature
(cider-repl--at-prompt-start-p)
Documentation
Return t if point is at the start of prompt.
This will not work on non-current prompts.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider-repl--at-prompt-start-p ()
"Return t if point is at the start of prompt.
This will not work on non-current prompts."
(= (point) cider-repl-input-start-mark))