doomemacs/modules/editor/format/autoload/evil.el
Henrik Lissner c58077810d
General refactor of modules
General code and comment improvements.

Also, removed the :desc's for csv-mode because map! is currently unable
to set which-key descriptions mode-locally, and should be avoided for
anything but global keybinds. This will be fixed when General is
introduced into Doom.
2018-09-09 09:58:20 -04:00

8 lines
317 B
EmacsLisp

;;; editor/format/autoload/evil.el -*- lexical-binding: t; -*-
;;;###if (featurep! :feature 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))