Function: eshell-mark-output

eshell-mark-output is an interactive and byte-compiled function defined in esh-mode.el.gz.

Signature

(eshell-mark-output &optional ARG)

Documentation

Display start of this batch of interpreter output at top of window.

Sets mark to the value of point when this command is run. With a prefix argument, narrows region to last command output.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-mode.el.gz
(defun eshell-mark-output (&optional arg)
  "Display start of this batch of interpreter output at top of window.
Sets mark to the value of point when this command is run.
With a prefix argument, narrows region to last command output."
  (interactive "P")
  (push-mark (eshell-show-output arg)))