Function: projectile--frecency-save
projectile--frecency-save is a byte-compiled function defined in
projectile.el.
Signature
(projectile--frecency-save)
Documentation
Persist the frecency data to projectile-frecency-file.
Merges with the data on disk first, so concurrent Emacs sessions don't wipe out each other's history. The dirty flag is kept when the file isn't writable, so a later save can retry.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile--frecency-save ()
"Persist the frecency data to `projectile-frecency-file'.
Merges with the data on disk first, so concurrent Emacs sessions
don't wipe out each other's history. The dirty flag is kept when
the file isn't writable, so a later save can retry."
(when (and projectile--frecency-dirty projectile--frecency-table)
(if (not (file-writable-p projectile-frecency-file))
(display-warning
'projectile
(format "Frecency file '%s' is not writable" projectile-frecency-file)
:warning)
(projectile--frecency-merge-from-disk)
(let (data)
(maphash
(lambda (root files)
(projectile--frecency-prune files)
(when (> (hash-table-count files) 0)
(let (file-entries)
(maphash (lambda (file entry)
(push (list file (car entry) (cdr entry))
file-entries))
files)
(push (cons root file-entries) data))))
projectile--frecency-table)
(projectile-serialize (projectile--frecency-cap-projects data)
projectile-frecency-file))
(setq projectile--frecency-dirty nil))))