Variable: recentf-filename-handlers

recentf-filename-handlers is a customizable variable defined in recentf.el.gz.

Value

(abbreviate-file-name)

Documentation

Functions to post process recent file names.

They are successively passed a file name to transform it.

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

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/recentf.el.gz
(defcustom recentf-filename-handlers '(abbreviate-file-name)
  "Functions to post process recent file names.
They are successively passed a file name to transform it."
  :group 'recentf
  :type '(choice
          (const :tag "None" nil)
          (repeat :tag "Functions"
           (choice
            (const file-truename)
            (const abbreviate-file-name)
            (function :tag "Other function"))))
  :version "29.1")