Variable: eshell-after-prompt-hook

eshell-after-prompt-hook is a customizable variable defined in em-prompt.el.gz.

Value

nil

Documentation

A list of functions to call after outputting the prompt.

Note that if eshell-scroll-show-maximum-output is non-nil, then setting eshell-show-maximum-output here won't do much. It depends on whether the user wants the resizing to happen while output is arriving, or after.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/em-prompt.el.gz
(defcustom eshell-after-prompt-hook nil
  "A list of functions to call after outputting the prompt.
Note that if `eshell-scroll-show-maximum-output' is non-nil, then
setting `eshell-show-maximum-output' here won't do much.  It depends
on whether the user wants the resizing to happen while output is
arriving, or after."
  :type 'hook
  :options '(eshell-show-maximum-output)
  :group 'eshell-prompt)