diff --git a/core/prelude-core.el b/core/prelude-core.el index e8ea566..e3e0748 100644 --- a/core/prelude-core.el +++ b/core/prelude-core.el @@ -291,7 +291,9 @@ buffer is not visiting a file." (defun prelude-recentf-ido-find-file () "Find a recent file using ido." (interactive) - (let ((file (ido-completing-read "Choose recent file: " recentf-list nil t))) + (let ((file (ido-completing-read "Choose recent file: " + (-map 'abbreviate-file-name recentf-list) + nil t))) (when file (find-file file))))