使用recentf强制emacs最近的文件忽略指定的文件(例如.windows和.revive)
我一直被这样一个事实所困扰:当启用 revive.el 和 windows.el 退出时,它会打开一个文件并写入名为 .revive 和 .windows 的文件。这些文件被保存,因此它会出现在最近的文件列表中。有没有办法让它忽略这些文件或我想要的任何其他文件。
I have always been bugged by the fact that when exiting with revive.el and windows.el enabled it opens a file and writes to it called .revive and .windows. These are saved so it goes in the recent files list. Is there anyway to make it ignore these files or any other files I desire.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使
recentf
忽略某些文件的方法是将适当的正则表达式添加到recentf-exclude
列表中:这将阻止上述任何未来条目添加到
最近的列表。您需要删除
recentf
文件中的当前条目才能永久删除它们,或者等到它们从其他条目中逐步淘汰。A way to make
recentf
ignore some files is to add appropriate regexps torecentf-exclude
list:This will prevent any future entries of the above from being added to the
recentf
list. You need to delete the current entries in yourrecentf
file for them to be permanently removed or wait until they are phased out from other entries.