Variable: recentf-menu-items-for-commands

recentf-menu-items-for-commands is a variable defined in recentf.el.gz.

Value

(["Clean up list" recentf-cleanup :help
  "Remove duplicates, and obsolete files from the recent list" :active
  t]
 ["Edit list..." recentf-edit-list :help
  "Manually remove files from the recent list" :active t]
 ["Save list now" recentf-save-list :help
  "Save the list of recently opened files now" :active t]
 ["Options..." (customize-group "recentf") :help
  "Customize recently opened files menu and options" :active t])

Documentation

List of menu items for recentf commands.

Source Code

;; Defined in /usr/src/emacs/lisp/recentf.el.gz
(defvar recentf-menu-items-for-commands
  (list
   ["Clean up list"
    recentf-cleanup
    :help "Remove duplicates, and obsolete files from the recent list"
    :active t]
   ["Edit list..."
    recentf-edit-list
    :help "Manually remove files from the recent list"
    :active t]
   ["Save list now"
    recentf-save-list
    :help "Save the list of recently opened files now"
    :active t]
   ["Options..."
    (customize-group "recentf")
    :help "Customize recently opened files menu and options"
    :active t]
   )
  "List of menu items for recentf commands.")