This is much better

This commit is contained in:
Benson Chu 2026-04-21 13:47:59 -05:00
parent cab634d3fc
commit 6cd0bda9c3

View file

@ -190,7 +190,13 @@
(projectile--run-project-cmd command projectile-compilation-cmd-map
:show-prompt arg
:prompt-prefix "Compile command: "
:save-buffers t))))
:save-buffers t)))
(defun projectile-back-to-root ()
(interactive)
(dired (projectile-project-root)))
(global-set-key (kbd "C-x C-d") #'projectile-back-to-root))
#+end_src
* Slime mode
#+BEGIN_SRC emacs-lisp