Function: View-scroll-line-forward

View-scroll-line-forward is an interactive and byte-compiled function defined in view.el.gz.

Signature

(View-scroll-line-forward &optional LINES)

Documentation

Scroll forward one line (or prefix LINES lines) in View mode.

See also View-scroll-page-forward, but note that scrolling is limited to minimum of LINES and one window-full.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/view.el.gz
(defun View-scroll-line-forward (&optional lines)
  "Scroll forward one line (or prefix LINES lines) in View mode.
See also `View-scroll-page-forward', but note that scrolling is limited
to minimum of LINES and one window-full."
  (interactive "P")
  (view-scroll-lines lines nil 1 t))