Function: projectile-recently-active-files

projectile-recently-active-files is a byte-compiled function defined in projectile.el.

Signature

(projectile-recently-active-files)

Documentation

Get list of recently active files.

Files are ordered by recently active buffers, and then recently opened through use of recentf.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-recently-active-files ()
  "Get list of recently active files.

Files are ordered by recently active buffers, and then recently
opened through use of recentf."
  (let ((project-buffer-files (projectile-project-buffer-files)))
    (append project-buffer-files
            (seq-difference
             (projectile-recentf-files)
             project-buffer-files))))