Function: evil-fill

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

Signature

(evil-fill BEG END)

Documentation

Fill text.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-operator evil-fill (beg end)
  "Fill text."
  :move-point nil
  :type line
  (save-excursion
    (ignore-errors (fill-region beg end))))