Function: recentf-open-more-files

recentf-open-more-files is an interactive and byte-compiled function defined in recentf.el.gz.

Signature

(recentf-open-more-files)

Documentation

Show a dialog to open a recent file that is not in the menu.

Probably introduced at or before Emacs version 22.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/recentf.el.gz
(defun recentf-open-more-files ()
  "Show a dialog to open a recent file that is not in the menu."
  (interactive)
  (recentf-open-files (nthcdr recentf-max-menu-items recentf-list)
                      (format "*%s - More*" recentf-menu-title)))