diff options
author | Stefan Kangas <stefan@marxist.se> | 2022-06-23 11:00:19 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2022-06-23 12:48:29 +0200 |
commit | c753e4cb2a2a5998626d48d85071c047cbab6c54 (patch) | |
tree | a5a6d3e491cf06f89e250487b433ac2f727e1b82 /lisp/recentf.el | |
parent | 5f904e50c32197e636e521120384d3658f53c794 (diff) | |
download | emacs-c753e4cb2a2a5998626d48d85071c047cbab6c54.tar.gz emacs-c753e4cb2a2a5998626d48d85071c047cbab6c54.tar.bz2 emacs-c753e4cb2a2a5998626d48d85071c047cbab6c54.zip |
Use shortened filenames in recentf-mode
* lisp/recentf.el (recentf-filename-handlers): Set to
'abbreviate-file-name' to get shortened names by default. (Bug#56123)
Diffstat (limited to 'lisp/recentf.el')
-rw-r--r-- | lisp/recentf.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/recentf.el b/lisp/recentf.el index 8b05f48283e..6729ede1673 100644 --- a/lisp/recentf.el +++ b/lisp/recentf.el @@ -285,7 +285,7 @@ If `file-name-history' is not empty, do nothing." (make-obsolete-variable 'recentf-load-hook "use `with-eval-after-load' instead." "28.1") -(defcustom recentf-filename-handlers nil +(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 @@ -295,7 +295,8 @@ They are successively passed a file name to transform it." (choice (const file-truename) (const abbreviate-file-name) - (function :tag "Other function"))))) + (function :tag "Other function")))) + :version "29.1") (defcustom recentf-show-file-shortcuts-flag t "Non-nil means to show \"[N]\" for the Nth item up to 10. |