Function: with-editor-emulate-terminal
with-editor-emulate-terminal is a byte-compiled function defined in
with-editor.el.
Signature
(with-editor-emulate-terminal PROCESS STRING)
Documentation
Like term-emulate-terminal but also handle edit requests.
Source Code
;; Defined in ~/.emacs.d/elpa/with-editor-20260301.1317/with-editor.el
(defun with-editor-emulate-terminal (process string)
"Like `term-emulate-terminal' but also handle edit requests."
(let ((with-editor-sleeping-editor-regexp
(substring with-editor-sleeping-editor-regexp 1)))
(with-editor-sleeping-editor-filter process string))
(term-emulate-terminal process string))