Function: edt-window-bottom

edt-window-bottom is an interactive and byte-compiled function defined in edt.el.gz.

Signature

(edt-window-bottom)

Documentation

Move the cursor to the bottom of the window.

Key Bindings

Source Code

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

(defun edt-window-bottom ()
  "Move the cursor to the bottom of the window."
  (interactive)
  (let ((start-column (current-column)))
    (move-to-window-line (- (window-height) 2))
    (move-to-column start-column)))