mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-22 02:50:24 +10:00
9 lines
316 B
EmacsLisp
9 lines
316 B
EmacsLisp
;;; editor/format/autoload/evil.el -*- lexical-binding: t; -*-
|
|
;;;###if (featurep! :editor evil)
|
|
|
|
;;;###autoload (autoload '+format:region "editor/format/autoload/evil" nil t)
|
|
(evil-define-operator +format:region (beg end)
|
|
"Evil ex interface to `+format/region'."
|
|
(interactive "<r>")
|
|
(+format/region beg end))
|