I update from ELPA/MELPA regularly. Unfortunately, the files the Emacs package manager manipulates show up in my recentf list, basically making it useless since it's always full from whatever files were updated, and not files that I actually care about. How can I fix this?
Asked
Active
Viewed 259 times
1 Answers
4
See user options recentf-exclude
, recentf-keep
, recentf-auto-cleanup
, and command recentf-cleanup
.
The first two options let you exclude and include files that satisfy certain predicates or whose names match certain patterns, respectively.

Drew
- 29,895
- 7
- 74
- 104
-
Thank you. I was being dumb. I did google before I asked, I just didn't find anything. – PythonNut Mar 30 '14 at 00:40
-
Ask Emacs first, before googling: `C-h v recentf TAB`. Or load library `recentf` and then do `M-x customize-option recentf TAB`. – Drew Jul 19 '14 at 22:02