Function: edt-sect
edt-sect is an interactive and byte-compiled function defined in
edt.el.gz.
Signature
(edt-sect NUM)
Documentation
Move in current direction a full 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 (num)
"Move in current direction a full window.
Argument NUM is the number of sections to move."
(interactive "p")
(if (equal edt-direction-string edt-forward-string)
(edt-sect-forward num)
(edt-sect-backward num)))