Remove redisplay-skip-fontification-on-input and move it to README.md

This commit is contained in:
James Cherti
2025-05-01 21:15:06 -04:00
parent e2b06c4cf4
commit c4787911f9
2 changed files with 5 additions and 3 deletions

View File

@@ -1026,6 +1026,11 @@ To prevent Emacs from saving customization information to a custom file, set `cu
(setq vc-make-backup-files t) (setq vc-make-backup-files t)
(setq kept-old-versions 10) (setq kept-old-versions 10)
(setq kept-new-versions 10) (setq kept-new-versions 10)
;; Improve Emacs responsiveness by deferring fontification during input
;;
;; NOTE: This may cause delayed syntax highlighting in certain cases
(setq redisplay-skip-fontification-on-input t)
``` ```
It is also recommended to read the following articles: It is also recommended to read the following articles:

View File

@@ -104,9 +104,6 @@
(setq truncate-string-ellipsis "") (setq truncate-string-ellipsis "")
;; Improve Emacs' responsiveness by delaying syntax highlighting during input
(setq redisplay-skip-fontification-on-input t)
;; Disable truncation of printed s-expressions in the message buffer ;; Disable truncation of printed s-expressions in the message buffer
(setq eval-expression-print-length nil (setq eval-expression-print-length nil
eval-expression-print-level nil) eval-expression-print-level nil)