Function: evil--ex-print-to-minibuffer
evil--ex-print-to-minibuffer is a byte-compiled function defined in
evil-commands.el.
Signature
(evil--ex-print-to-minibuffer STRING)
Documentation
Print STRING to the minibuffer for better persistence.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(defun evil--ex-print-to-minibuffer (string)
"Print STRING to the minibuffer for better persistence."
(let ((keymap (make-keymap))
minibuffer-local-map)
(set-char-table-range (nth 1 keymap) t 'abort-recursive-edit)
(setq minibuffer-local-map keymap)
(read-from-minibuffer "" (propertize string 'read-only t))))