Function: edt-bottom

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

Signature

(edt-bottom)

Documentation

Move cursor to the end of buffer.

Key Bindings

Source Code

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

(defun edt-bottom ()
  "Move cursor to the end of buffer."
  (interactive)
  (goto-char (point-max))
  (edt-line-to-bottom-of-window))