使用recentf强制emacs最近的文件忽略指定的文件(例如.windows和.revive)

发布于 2024-12-13 19:11:45 字数 138 浏览 2 评论 0原文

我一直被这样一个事实所困扰:当启用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不弃不离 2024-12-20 19:11:45

使 recentf 忽略某些文件的方法是将适当的正则表达式添加到 recentf-exclude 列表中:

(add-to-list 'recentf-exclude "\\.windows\\'")
(add-to-list 'recentf-exclude "\\.revive\\'")

这将阻止上述任何未来条目添加到 最近的列表。您需要删除 recentf 文件中的当前条目才能永久删除它们,或者等到它们从其他条目中逐步淘汰。

A way to make recentf ignore some files is to add appropriate regexps to recentf-exclude list:

(add-to-list 'recentf-exclude "\\.windows\\'")
(add-to-list 'recentf-exclude "\\.revive\\'")

This will prevent any future entries of the above from being added to the recentf list. You need to delete the current entries in your recentf file for them to be permanently removed or wait until they are phased out from other entries.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文