有什么插件可以重新打开最后一个被杀死的缓冲区/文件吗?就像 CSt 在 Firefox 中所做的一样。
我知道,recentf-mode 可以记住最近访问过的文件历史。
(require 'cl)
(require 'recentf)
(defun find-last-killed-file ()
(interactive)
(let ((active-files (loop for buf in (buffer-list)
when (buffer-file-name buf) collect it)))
(loop for file in recentf-list
unless (member file active-files) return (find-file file))))
(define-key global-map (kbd "C-S-t") 'find-last-killed-file)