Function: evil-goto-first-line

evil-goto-first-line is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-goto-first-line &optional COUNT)

Documentation

Go to line COUNT. By default the first line.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-goto-first-line (count)
  "Go to line COUNT. By default the first line."
  :jump t
  :type line
  (evil-goto-line (or count 1)))