about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2024-11-05 08:45:04 +0000
committerDavid Morgan <djm_uk@protonmail.com>2024-11-05 08:45:04 +0000
commitf2b93ee2a69ed12c1611f00634f15353d7b7a306 (patch)
tree72478588fd2e21cd3414681d1fd14edaee09d528
parentec4ee61669a88728cc0469c9a310423aefe01769 (diff)
downloaddotfiles-f2b93ee2a69ed12c1611f00634f15353d7b7a306.tar.gz
Exclude perspective from automatic reloading
-rw-r--r--.emacs.d/lisp/init-packages.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-packages.el b/.emacs.d/lisp/init-packages.el
index 965314b..59435f5 100644
--- a/.emacs.d/lisp/init-packages.el
+++ b/.emacs.d/lisp/init-packages.el
@@ -168,8 +168,8 @@ using this command."
   "Automically reload packages after they have been updated."
   (cl-letf (((symbol-function 'yes-or-no-p) (cl-constantly t)))
     (when (not (or (memq id elpaca-ignored-dependencies)
-                   ;; TODO why aren't these already in the list?
-                   (memq id '(xref project))))
+                   ;; TODO why aren't xref and project already in the list?
+                   (memq id '(xref project perspective))))
       (+elpaca-reload-package id))))
 
 ;; https://github.com/radian-software/radian/blob/e3aad124c8e0cc870ed09da8b3a4905d01e49769/emacs/radian.el#L352