Function: evil-fill-and-move

evil-fill-and-move is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-fill-and-move BEG END)

Documentation

Fill text and move point to the end of the filled region.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-operator evil-fill-and-move (beg end)
  "Fill text and move point to the end of the filled region."
  :move-point nil
  :type line
  (let ((marker (make-marker)))
    (move-marker marker (1- end))
    (ignore-errors
      (fill-region beg end)
      (goto-char marker)
      (evil-first-non-blank))))