Function: eshell-next-input
eshell-next-input is an interactive and byte-compiled function defined
in em-hist.el.gz.
Signature
(eshell-next-input ARG)
Documentation
Cycle forwards through input history.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/em-hist.el.gz
(defun eshell-next-input (arg)
"Cycle forwards through input history."
(interactive "*p")
(eshell-previous-input (- arg)))