Variable: recentf-filename-handlers
recentf-filename-handlers is a customizable variable defined in
recentf.el.gz.
Value
nil
Documentation
Functions to post process recent file names.
They are successively passed a file name to transform it.
Probably introduced at or before Emacs version 22.1.
Source Code
;; Defined in /usr/src/emacs/lisp/recentf.el.gz
(defcustom recentf-filename-handlers nil
"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")))))