Function: edt-word-forward

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

Signature

(edt-word-forward NUM)

Documentation

Move forward 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-forward (num)
  "Move forward to first character of next word.
Argument NUM is the number of words to move."
  (interactive "p")
  (edt-check-prefix num)
  (while (> num 0)
    (edt-one-word-forward)
    (setq num (1- num))))