Variable: eshell-output-filter-functions

eshell-output-filter-functions is a customizable variable defined in esh-mode.el.gz.

Value

(eshell-postoutput-scroll-to-bottom
 eshell-handle-control-codes
 eshell-handle-ansi-color
 eshell-watch-for-password-prompt)

Documentation

Functions to call before output is displayed.

These functions are only called for output that is displayed interactively (see eshell-interactive-filter), and not for output which is redirected.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-mode.el.gz
(defcustom eshell-output-filter-functions
  '(eshell-postoutput-scroll-to-bottom
    eshell-handle-control-codes
    eshell-handle-ansi-color
    eshell-watch-for-password-prompt)
  "Functions to call before output is displayed.
These functions are only called for output that is displayed
interactively (see `eshell-interactive-filter'), and not for
output which is redirected."
  :type 'hook)