Skip to content

Commit

Permalink
Rename the cache file to .projectile-cache.eld
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatsov committed Jan 31, 2025
1 parent 28bc450 commit 81a7e5d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions doc/modules/ROOT/pages/configuration.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,12 @@ be added to the cache automatically the first time you open them.

The project cache is persistent and will be preserved during Emacs restarts.
Each project gets its own cache file, that will be placed in the root folder of the
project. The name of the cache file is `.projectile.cache` by default, but you can tweak it
project. The name of the cache file is `.projectile-cache.eld` by default, but you can tweak it
if you want to:

[source,elisp]
----
(setq projectile-cache-file "foo.bar")
(setq projectile-cache-file "foo.eld")
----

The cache file will be loaded automatically in memory the first time you trigger
Expand Down
2 changes: 1 addition & 1 deletion projectile.el
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ When nil Projectile will consider the current directory the project root."
:group 'projectile
:type 'string)

(defcustom projectile-cache-file ".projectile.cache"
(defcustom projectile-cache-file ".projectile-cache.eld"
"The name of Projectile's cache.
It's relative to the project root."
:group 'projectile
Expand Down

0 comments on commit 81a7e5d

Please sign in to comment.