Function: edt-window-top
edt-window-top is an interactive and byte-compiled function defined in
edt.el.gz.
Signature
(edt-window-top)
Documentation
Move the cursor to the top of the window.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
;;;
;;; WINDOW TOP
;;;
(defun edt-window-top ()
"Move the cursor to the top of the window."
(interactive)
(let ((start-column (current-column)))
(move-to-window-line 0)
(move-to-column start-column)))