bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#51475: read-char-choice should hide the cursor


From: Gregory Heytings
Subject: bug#51475: read-char-choice should hide the cursor
Date: Fri, 29 Oct 2021 19:18:27 +0000



Perhaps if the user wants this, they could just use `minibuffer-setup-hook' to make the cursor go away?


Indeed, that's yet another solution:

(minibuffer-with-setup-hook
    (lambda () (setq-local cursor-type nil))
  (read-char-choice " a - good\n b - bad\n c - ugly" '(?a ?b ?c)))

But that doesn't work if read-char-choice-use-read-key is non-nil. And given that cursor-in-echo-area is explicitly bound in read-char-choice-use-read-key, there's I think no similar trick that could be used to make that case work.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]