Function: projectile--file-contents

projectile--file-contents is a byte-compiled function defined in projectile.el.

Signature

(projectile--file-contents FILE)

Documentation

Return the contents of FILE as a string.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile--file-contents (file)
  "Return the contents of FILE as a string."
  (with-temp-buffer
    (insert-file-contents file)
    (buffer-string)))