Function: evil-upcase
evil-upcase is an interactive and byte-compiled function defined in
evil-commands.el.
Signature
(evil-upcase BEG END &optional TYPE)
Documentation
Convert text to upper case.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-operator evil-upcase (beg end type)
"Convert text to upper case."
(if (eq type 'block)
(evil-apply-on-block #'evil-upcase beg end nil)
(upcase-region beg end)))