From 7a4ad7d3438619e46d0c858d41d43cdf4930a046 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 15 Apr 2020 14:12:45 -0400 Subject: [PATCH] Disable blink-cursor-mode again #2903 New issues with blinking cursors surfaced (see comments), so I am reverting the second half of be412c8630. --- core/core-ui.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/core-ui.el b/core/core-ui.el index 0abd2eac8..71f75c035 100644 --- a/core/core-ui.el +++ b/core/core-ui.el @@ -207,6 +207,11 @@ read-only or not file-visiting." ;; ;;; Cursor +;; The blinking cursor is distracting, but also interferes with cursor settings +;; in some minor modes that try to change it buffer-locally (like treemacs) and +;; can cause freezing for folks (esp on macOS) with customized & color cursors. +(blink-cursor-mode -1) + ;; Don't blink the paren matching the one at point, it's too distracting. (setq blink-matching-paren nil)