Function: eshell-queue-input

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

Signature

(eshell-queue-input &optional USE-REGION)

Documentation

Queue the current input text for execution by Eshell.

Particularly, don't send the text to the current process, even if it's waiting for input.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-mode.el.gz
(defun eshell-queue-input (&optional use-region)
  "Queue the current input text for execution by Eshell.
Particularly, don't send the text to the current process, even if it's
waiting for input."
  (interactive "P")
  (eshell-send-input use-region t))