Function: eshell-goto-input-start
eshell-goto-input-start is a byte-compiled function defined in
esh-mode.el.gz.
Signature
(eshell-goto-input-start)
Documentation
Goto the start of the last command input.
Putting this function on eshell-pre-command-hook will mimic Plan 9's
9term behavior.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-mode.el.gz
(defsubst eshell-goto-input-start ()
"Goto the start of the last command input.
Putting this function on `eshell-pre-command-hook' will mimic Plan 9's
9term behavior."
(goto-char eshell-last-input-start))