]> git.eshelyaron.com Git - emacs.git/commitdiff
Use shortened filenames in recentf-mode
authorStefan Kangas <stefan@marxist.se>
Thu, 23 Jun 2022 09:00:19 +0000 (11:00 +0200)
committerStefan Kangas <stefan@marxist.se>
Thu, 23 Jun 2022 10:48:29 +0000 (12:48 +0200)
* lisp/recentf.el (recentf-filename-handlers): Set to
'abbreviate-file-name' to get shortened names by default.  (Bug#56123)

etc/NEWS
lisp/recentf.el

index f21f482c29a911be5eb9b3c19556f454c8de32ac..6c04ae164cbb5ea866384f0192b1c4ed99c4870b 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1855,6 +1855,12 @@ Enabling this minor mode turns on hiding header material, like
 If non-nil, files untracked by a VCS are considered to be part of
 the project by a VC project based on that VCS.
 
+---
+*** 'recentf-mode' now uses shortened filenames by default.
+This means that e.g. "/home/foo/bar" is now displayed as "~/bar".
+Customize the user option 'recentf-filename-handlers' to nil to get
+back the old behavior.
+
 ---
 ** The autoarg.el library is now marked obsolete.
 This library provides the 'autoarg-mode' and 'autoarg-kp-mode' minor
index 8b05f48283edaeab2c0954fab6e6f5f6b38d34c5..6729ede1673027bc339a112a5db825361d2d4010 100644 (file)
@@ -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.