Function: evil--command-window-insert-commands
evil--command-window-insert-commands is a byte-compiled function
defined in evil-command-window.el.
Signature
(evil--command-window-insert-commands HISTORY)
Documentation
Insert the commands in HISTORY.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-command-window.el
(defun evil--command-window-insert-commands (history)
"Insert the commands in HISTORY."
(let ((inhibit-modification-hooks t))
(dolist (cmd (reverse history)) (insert cmd "\n"))
(evil--command-window-draw-prefix (point-min) (point-max) nil)))