branch: elpa/helm
commit caa13f39573ba4b35947613b8d1e0be60ae68606
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>
Ensure to turn on recentf in helm-source-file-name-history
---
helm-files.el | 3 +++
1 file changed, 3 insertions(+)
diff --git a/helm-files.el b/helm-files.el
index 1f78c03942d..217cf0d0c69 100644
--- a/helm-files.el
+++ b/helm-files.el
@@ -6830,6 +6830,9 @@ be existing directories."
;;
(defvar helm-source-file-name-history
(helm-build-sync-source "File Name History"
+ :init (lambda ()
+ (require 'recentf)
+ (when helm-turn-on-recentf (recentf-mode 1)))
:candidates 'file-name-history
:persistent-action #'ignore
;; See comments in `helm-recentf-source' about bug#2709.