This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-04-25
Channels
- # announcements (4)
- # babashka (3)
- # beginners (79)
- # biff (4)
- # calva (17)
- # cider (18)
- # clj-kondo (21)
- # cljdoc (45)
- # cljs-dev (14)
- # cljsrn (9)
- # clojure (90)
- # clojure-europe (86)
- # clojure-italy (3)
- # clojure-nl (3)
- # clojure-portugal (1)
- # clojure-uk (9)
- # clojurescript (20)
- # code-reviews (23)
- # conjure (14)
- # cursive (12)
- # datascript (12)
- # emacs (5)
- # events (2)
- # fulcro (13)
- # gratitude (1)
- # holy-lambda (9)
- # lambdaisland (2)
- # malli (6)
- # nbb (1)
- # nextjournal (2)
- # nrepl (30)
- # off-topic (63)
- # pathom (1)
- # portal (24)
- # reagent (5)
- # reitit (13)
- # releases (2)
- # remote-jobs (1)
- # sci (90)
- # shadow-cljs (49)
- # spacemacs (5)
- # sql (13)
- # testing (20)
- # tools-build (17)
- # xtdb (27)
I've upgraded from emacs 27.2 to 28.1 and suddenly see a lot of files like ...~undo-tree~
in my project.
It seems that it's pretty normal: https://emacs.stackexchange.com/questions/51410/saving-undo-tree-to-restore-in-next-session
And I have added the pattern to my global gitignore.
But I'm wondering what has changed and if the previous version had a configuration that stored this files elsewhere?
Undo-tree defaults have changed.
To write these files to the cache directory instead, add the following to dotspacemacs/user-config
in the Spacemacs configuration file
(setq undo-tree-history-directory-alist '(("." . "~/.emacs.d./.cache")))
Background discuss
https://github.com/syl20bnr/spacemacs/issues/15426I updated Spacemacs today and its writing files to ~/.emacs.d/.cache/undo-tree-history/
directory, so the above configuration should not be needed