Function: cider-repl-end-of-defun
cider-repl-end-of-defun is an interactive and byte-compiled function
defined in cider-repl.el.
Signature
(cider-repl-end-of-defun)
Documentation
Move to end of defun.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider-repl-end-of-defun ()
"Move to end of defun."
(interactive)
;; C.f. `cider-repl-beginning-of-defun'
(if (and (not (= (point) (point-max)))
(cider-repl--in-input-area-p))
(goto-char (point-max))
(end-of-defun)))