clojure-emacs / cider

The Clojure Interactive Development Environment that Rocks for Emacs
https://cider.mx
GNU General Public License v3.0
3.54k stars 645 forks source link

lein.sh should not hardcode `~/.emacs.d` #3572

Closed slotThe closed 11 months ago

slotThe commented 11 months ago

Currently, lein.sh hardcodes ~/.emacs.d in case any errors are reported by lein and puts an error file there. This seems like the wrong thing to do, as the user's config itself does not need to reside there. Judging from the mkdir -p ~/.emacs.d, that much is known. It can, however, result in extremely surprising behaviour, as Emacs still prefers those paths. By this I mean that even though one might use XDG-like conventions, the mere existence of a ~/.emacs.d directory will push Emacs towards using that as the place for the config—once hit by a lein error, the user will be greeting by a completely vanilla instance upon restart!

I guess one could do emacs --batch --eval "(princ user-emacs-directory)". I'm not sure how hacky this is (well, really I know :); either way, there is probably at least one good way to get the correct directory.

vemv commented 11 months ago

Thanks for a sensible issue report!

We already honor XDG JVM side so it would be no issue to also do it Elisp side.

This should be improved early in the week.

Cheers - V

slotThe commented 11 months ago

Well that was fast; thank you so much!

vemv commented 11 months ago

🍻!

Happy to have users opting in to enrich-classpath - other feedback welcome anytime.