Function: with-editor-process-filter

with-editor-process-filter is a byte-compiled function defined in with-editor.el.

Signature

(with-editor-process-filter PROCESS STRING &optional NO-DEFAULT-FILTER)

Documentation

Listen for edit requests by child processes.

Source Code

;; Defined in ~/.emacs.d/elpa/with-editor-20260301.1317/with-editor.el
(defun with-editor-process-filter
    (process string &optional no-default-filter)
  "Listen for edit requests by child processes."
  (let ((default-directory (process-get process 'default-dir)))
    (with-editor-sleeping-editor-filter process string))
  (unless no-default-filter
    (internal-default-process-filter process string)))