如何让Emacs ido-mode的recentf-list忽略不感兴趣的文件?
我正在使用xSteve's function for ido recent files的ido模式(请参阅下面的功能)。
但就像现在一样,它首先显示无趣的文件,如下所示:
-> ~/.ido-last
~/Library/Application Support/Aquamacs Emacs/recent-addresses
~/Documents/journal.org
ido-mode
忽略不感兴趣的文件,例如~/.ido-last
和~/Library/Application Support/Aquamacs Emacs/recent-addresses
?P.S。这是该函数,供参考:
(defun xsteve-ido-choose-from-recentf ()
"Use ido to select a recently opened file from the `recentf-list'"
(interactive)
(let ((home (expand-file-name (getenv "HOME"))))
(find-file
(ido-completing-read "Recentf open: "
(mapcar (lambda (path)
(replace-regexp-in-string home "~" path))
recentf-list)
nil t))))
(global-set-key [(meta f11)] 'xsteve-ido-choose-from-recentf)
答案 0 :(得分:4)
使recentf忽略某些文件的方法,只需将appripriate regexps添加到recentf-exclude列表中:
(add-to-list 'recentf-exclude "\\.windows\\'")
(add-to-list 'recentf-exclude "\\.revive\\'")
这将防止将来的任何条目添加到recentf列表中。需要删除recentf文件中的当前条目,以便永久删除这些条目,或者从其他条目中逐步删除它们。
来源:Force emacs recent files using recentf to ignore specified files (.windows and .revive for example)