Variable: recentf-exclude-ignored-extensions

recentf-exclude-ignored-extensions is a customizable variable defined in recentf.el.gz.

Value

nil

Documentation

List of file-name extensions that recentf should ignore.

This has effect only if the function recentf-exclude-file-by-extension-p is in the list that is the value of recentf-exclude. If this option is nil and recentf-exclude-file-by-extension-p is a member of recentf-exclude, a file will be ignored if its extension is in completion-ignored-extensions, which see.

This variable was added, or its default value changed, in Emacs 31.1.

Probably introduced at or before Emacs version 31.1.

Source Code

;; Defined in /usr/src/emacs/lisp/recentf.el.gz
(defcustom recentf-exclude-ignored-extensions nil
  "List of file-name extensions that `recentf' should ignore.
This has effect only if the function `recentf-exclude-file-by-extension-p'
is in the list that is the value of `recentf-exclude'.
If this option is nil and `recentf-exclude-file-by-extension-p' is a
member of `recentf-exclude', a file will be ignored if its extension is
in `completion-ignored-extensions', which see."
  :group 'recentf
  :version "31.1"
  :type '(repeat string))