Function: edt-sect-backward

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

Signature

(edt-sect-backward NUM)

Documentation

Move cursor backward two-thirds of a window.

Argument NUM is the number of sections to move.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
(defun edt-sect-backward (num)
  "Move cursor backward two-thirds of a window.
Argument NUM is the number of sections to move."
  (interactive "p")
  (edt-check-prefix num)
  (edt-line-backward (* (* (/ (- (window-height) 1) 3) 2) num)))