Function: cider-repl-bol-mark

cider-repl-bol-mark is an interactive and byte-compiled function defined in cider-repl.el.

Signature

(cider-repl-bol-mark)

Documentation

Set the mark and go to the beginning of line or the prompt.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider-repl-bol-mark ()
  "Set the mark and go to the beginning of line or the prompt."
  (interactive)
  (unless mark-active
    (set-mark (point)))
  (move-beginning-of-line 1))