Variable: comint-output-filter-functions

comint-output-filter-functions is a variable defined in comint.el.gz.

Value

(ansi-color-process-output
 comint-postoutput-scroll-to-bottom
 comint-watch-for-password-prompt)

Documentation

Functions to call after output is inserted into the buffer.

One possible function is comint-postoutput-scroll-to-bottom. These functions get one argument, a string containing the text as originally inserted. Note that this might not be the same as the buffer contents between comint-last-output-start and the buffer's process-mark, if other filter functions have already modified the buffer.

See also comint-preoutput-filter-functions.

You can use add-hook to add functions to this list either globally or locally.

Probably introduced at or before Emacs version 19.23.

Source Code

;; Defined in /usr/src/emacs/lisp/comint.el.gz
;;;###autoload
(defvar comint-output-filter-functions '(ansi-color-process-output comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt)
  "Functions to call after output is inserted into the buffer.
One possible function is `comint-postoutput-scroll-to-bottom'.
These functions get one argument, a string containing the text as originally
inserted.  Note that this might not be the same as the buffer contents between
`comint-last-output-start' and the buffer's `process-mark', if other filter
functions have already modified the buffer.

See also `comint-preoutput-filter-functions'.

You can use `add-hook' to add functions to this list
either globally or locally.")