Function: widget-forward

widget-forward is an interactive and byte-compiled function defined in wid-edit.el.gz.

Signature

(widget-forward ARG)

Documentation

Move point to the next field or button.

With optional ARG, move across that many fields.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-forward (arg)
  "Move point to the next field or button.
With optional ARG, move across that many fields."
  (interactive "p")
  (run-hooks 'widget-forward-hook)
  (widget-move arg))