Function: eshell-kill-input

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

Signature

(eshell-kill-input)

Documentation

Kill all text from last stuff output by interpreter to point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-mode.el.gz
(defun eshell-kill-input ()
  "Kill all text from last stuff output by interpreter to point."
  (interactive)
  (if (> (point) eshell-last-output-end)
      (kill-region eshell-last-output-end (point))
    (let ((here (point)))
      (beginning-of-line)
      (kill-region (point) here))))