From 45c1f6852cc4c1abaddc2903e12bb0d4a79df44f Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Thu, 11 Jul 2024 06:55:03 -0400 Subject: [PATCH] Set redisplay-skip-fontification-on-input to nil I disabled 'redisplay-skip-fontification-on-input' because it seems to prevent auto-revert from fontifying Dired when Emacs is not focused. Additionally, it causes fontification to be ignored until the user presses at least one key. --- early-init.el | 4 ---- 1 file changed, 4 deletions(-) diff --git a/early-init.el b/early-init.el index af3bf85..518c426 100644 --- a/early-init.el +++ b/early-init.el @@ -64,10 +64,6 @@ ;; Increase how much is read from processes in a single chunk (default is 4kb). (setq read-process-output-max (* 128 1024)) ; 128kb -;; With this method, the redisplay process skips fontification (syntax -;; highlighting) while you are actively typing or performing other actions. -(setq redisplay-skip-fontification-on-input t) - ;; Reduce rendering/line scan work by not rendering cursors or regions in ;; non-focused windows. (setq-default cursor-in-non-selected-windows nil)