Function: eshell-next-matching-input-from-input

eshell-next-matching-input-from-input is an interactive and byte-compiled function defined in em-hist.el.gz.

Signature

(eshell-next-matching-input-from-input ARG)

Documentation

Search forwards through input history for match for current input.

(Following history elements are more recent commands.)
With prefix argument N, search for Nth following match. If N is negative, search backwards for the -Nth previous match.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/em-hist.el.gz
(defun eshell-next-matching-input-from-input (arg)
  "Search forwards through input history for match for current input.
\(Following history elements are more recent commands.)
With prefix argument N, search for Nth following match.
If N is negative, search backwards for the -Nth previous match."
  (interactive "p")
  (eshell-previous-matching-input-from-input (- arg)))