Function: projectile-replace--file-header
projectile-replace--file-header is a byte-compiled function defined in
projectile.el.
Signature
(projectile-replace--file-header FILE ROOT COUNT)
Documentation
Return a propertized header line for FILE relative to ROOT with COUNT matches.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
;;; Results buffer rendering
(defun projectile-replace--file-header (file root count)
"Return a propertized header line for FILE relative to ROOT with COUNT matches."
(propertize
(concat (propertize (file-relative-name file root)
'face 'projectile-replace-file)
(format " (%d)\n" count))
'projectile-replace-file file))