Function: edt-scroll-window-forward-line

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

Signature

(edt-scroll-window-forward-line)

Documentation

Move window forward one line leaving cursor at position in window.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
;;;
;;; SCROLL WINDOW LINE
;;;

(defun edt-scroll-window-forward-line ()
  "Move window forward one line leaving cursor at position in window."
  (interactive)
  (scroll-up 1))