From 37d8c1c2820ff21ee7bb2685e61daa7b3e0758af Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Thu, 25 Apr 2024 11:03:28 +0200 Subject: [PATCH] Do not enable proced auto-updating on Windows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This seems to be slow, causing proced to take more time updating a buffer than waiting the one second until the next update – resulting in an unresponsive proced buffer. Note: I am not sure whether this setting is correct, as `(not on-windows)` will not be evaluated when `use-package` calls `custom-theme-set-variables`. However, I think it will be evaluated eventually, and that should be all that's needed. --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index 4d518a6..38d94e7 100644 --- a/init.el +++ b/init.el @@ -257,7 +257,7 @@ (use-package proced :custom ((proced-tree-flag t) - (proced-auto-update-flag t) + (proced-auto-update-flag (not on-windows)) (proced-format 'medium) (proced-auto-update-interval 1) (proced-goal-attribute nil)