Function: widget-forward

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

Signature

(widget-forward ARG &optional SUPPRESS-ECHO)

Documentation

Move point to the next field or button.

With optional ARG, move across that many fields. When the second optional argument is non-nil, nothing is shown in the echo area.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-forward (arg &optional suppress-echo)
  "Move point to the next field or button.
With optional ARG, move across that many fields.
When the second optional argument is non-nil,
nothing is shown in the echo area."
  (interactive "p")
  (run-hooks 'widget-forward-hook)
  (widget-move arg suppress-echo))