Function: evil-normalize
evil-normalize is a byte-compiled function defined in evil-common.el.
Signature
(evil-normalize BEG END TYPE &rest PROPERTIES)
Documentation
Normalize BEG and END as TYPE with PROPERTIES.
Return a list (BEG END TYPE PROPERTIES ...), where the tail may contain a property list.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
(defun evil-normalize (beg end type &rest properties)
"Normalize BEG and END as TYPE with PROPERTIES.
Return a list (BEG END TYPE PROPERTIES ...), where the tail
may contain a property list."
(apply #'evil-transform :normalize beg end type properties))