Function: edt-line-to-top-of-window

edt-line-to-top-of-window is an interactive and byte-compiled function defined in edt.el.gz.

Signature

(edt-line-to-top-of-window)

Documentation

Move the current line to the top of the window.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
;;;
;;; LINE TO TOP OF WINDOW
;;;

(defun edt-line-to-top-of-window ()
  "Move the current line to the top of the window."
  (interactive)
  (recenter 0))