Function: recentf-forward

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

Signature

(recentf-forward ARG)

Documentation

Move the cursor to the next widget in the current dialog.

With prefix argument ARG, move to the ARGth next widget. If recentf-suppress-open-file-help is non-nil, suppress help messages in the echo area in the open recentf dialog.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/recentf.el.gz
(defun recentf-forward (arg)
  "Move the cursor to the next widget in the current dialog.
With prefix argument ARG, move to the ARGth next widget.  If
`recentf-suppress-open-file-help' is non-nil, suppress help messages in
the echo area in the open recentf dialog."
  (interactive "p")
  (widget-forward arg recentf-suppress-open-file-help))