Function: evil-command-window-ex-execute
evil-command-window-ex-execute is a byte-compiled function defined in
evil-command-window.el.
Signature
(evil-command-window-ex-execute RESULT)
Documentation
Execute RESULT as an Ex command.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-command-window.el
(defun evil-command-window-ex-execute (result)
"Execute RESULT as an Ex command."
(unless (string-match-p "\\`[ \t\n\r]*\\'" result)
(unless (equal result (car evil-ex-history))
(push result evil-ex-history))
(evil-ex-execute result)))