Function: evil-goto-char
evil-goto-char is an interactive and byte-compiled function defined in
evil-commands.el.
Signature
(evil-goto-char &optional POSITION)
Documentation
Go to POSITION in the buffer.
Default position is the beginning of the buffer.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-goto-char (position)
"Go to POSITION in the buffer.
Default position is the beginning of the buffer."
:jump t
(interactive "<N>")
(goto-char (or position (point-min))))