branch: externals/corfu commit 76339f0dc31f3ce99dd66198e990b03f448de3de Author: Daniel Mendler <m...@daniel-mendler.de> Commit: Daniel Mendler <m...@daniel-mendler.de>
Use run-at-time instead of idle timer --- corfu.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/corfu.el b/corfu.el index fb2cd27..a36d119 100644 --- a/corfu.el +++ b/corfu.el @@ -765,8 +765,8 @@ there hasn't been any input, then quit." (doc (funcall fun cand))) (if (or (eq corfu-echo-documentation t) corfu--echo-message) (corfu--echo-show doc) - (setq corfu--echo-timer (run-with-idle-timer corfu-echo-documentation - nil #'corfu--echo-show doc))) + (setq corfu--echo-timer (run-at-time corfu-echo-documentation + nil #'corfu--echo-show doc))) (when corfu--echo-message (corfu--echo-show "")))))