Function: evil-ex-execute
evil-ex-execute is a byte-compiled function defined in evil-ex.el.
Signature
(evil-ex-execute STRING)
Documentation
Execute STRING as an Ex command.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-ex.el
(defun evil-ex-execute (string)
"Execute STRING as an Ex command."
(eval (or (evil-ex-parse string) (signal 'evil-ex-error string)) t))