this post was submitted on 22 Nov 2023
1 points (100.0% liked)
Emacs
313 readers
2 users here now
A community for the timeless and infinitely powerful editor. Want to see what Emacs is capable of?!
Get Emacs
Rules
- Posts should be emacs related
- Be kind please
- Yes, we already know: Google results for "emacs" and "vi" link to each other. We good.
Emacs Resources
Emacs Tutorials
- Beginner’s Guide to Emacs
- Absolute Beginner's Guide to Emacs
- How to Learn Emacs: A Hand-drawn One-pager for Beginners
Useful Emacs configuration files and distributions
Quick pain-saver tip
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I think it could be related to
after-find-file
, defined inlisp/files.el
.In the version in the master branch there's a call to
sit-for
. Unfortunately it seems to be hard-coded with a 1 second interval, so you'll probably have to redefine this function.Yes, that's it. I got answer for bug report:
"This is a feature: we let the user see the message and wait for 1 sec
after showing it, to make sure this particular message is not
immediately replaced by some others. From after-find-file:
(when (and warn msg)
(message "%s" msg)
(or not-serious (sit-for 1 t))))
^^^^^^^^^^^^^
(The value of not-serious is nil in this case.)
This is not a bug."
Wow, this is really dumb in a single threaded event driven code base. I hope they replace with some popup or equivalent.