Function: comint-next-input

comint-next-input is an interactive and byte-compiled function defined in comint.el.gz.

Signature

(comint-next-input ARG)

Documentation

Cycle forwards through input history.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/comint.el.gz
(defun comint-next-input (arg)
  "Cycle forwards through input history."
  (interactive "*p" comint-mode)
  (comint-previous-input (- arg)))