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 forward across ARG fields or buttons.

Interactively, ARG is the prefix numeric argument and defaults to 1. If the optional argument SUPPRESS-ECHO is non-nil, suppress showing in the echo area the help-echo, if any, for the final position.

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 forward across ARG fields or buttons.
Interactively, ARG is the prefix numeric argument and defaults to 1.
If the optional argument SUPPRESS-ECHO is non-nil, suppress showing
in the echo area the help-echo, if any, for the final position."
  (interactive "p")
  (run-hooks 'widget-forward-hook)
  (widget-move arg suppress-echo))