Function: edt-word
edt-word is an interactive and byte-compiled function defined in
edt.el.gz.
Signature
(edt-word NUM)
Documentation
Move in current direction to first character of next word.
Argument NUM is the number of words to move.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
(defun edt-word (num)
"Move in current direction to first character of next word.
Argument NUM is the number of words to move."
(interactive "p")
(if (equal edt-direction-string edt-forward-string)
(edt-word-forward num)
(edt-word-backward num)))