Function: cider-repl-mode-end-of-defun
cider-repl-mode-end-of-defun is a byte-compiled function defined in
cider-repl.el.
Signature
(cider-repl-mode-end-of-defun &optional ARG)
Documentation
Move to the end of defun.
If given a negative value of ARG, move to the beginning of defun.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider-repl-mode-end-of-defun (&optional arg)
"Move to the end of defun.
If given a negative value of ARG, move to the beginning of defun."
(if (and arg (< arg 0))
(cider-repl-mode-beginning-of-defun (- arg))
(dotimes (_ (or arg 1))
(cider-repl-next-prompt))))