branch: externals/consult
commit ffaaf6da909dc9ff766e5a5f16eb265635aa6149
Author: Augusto Stoffel <ast...@users.noreply.github.com>
Commit: GitHub <nore...@github.com>

    consult-isearch-history: use cursor-in-echo-area (#745)
---
 consult.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/consult.el b/consult.el
index da4201e192..0b703237c4 100644
--- a/consult.el
+++ b/consult.el
@@ -4111,8 +4111,8 @@ This replaces the current search string if Isearch is 
active, and
 starts a new Isearch session otherwise."
   (interactive)
   (consult--forbid-minibuffer)
-  (let* ((isearch-message-function 'ignore) ;; Avoid flicker in echo area
-         (inhibit-redisplay t)              ;; Avoid flicker in mode line
+  (let* ((isearch-message-function #'ignore)
+         (cursor-in-echo-area t) ;; Avoid cursor flickering
          (candidates (consult--isearch-history-candidates)))
     (unless isearch-mode (isearch-mode t))
     (with-isearch-suspended

Reply via email to