-
Notifications
You must be signed in to change notification settings - Fork 24
Eyebrowse-mode fires before-change-functions
hook on every movement
#79
Comments
This is the indicator which is created every time the modeline is redrawn. This happens due to the calls to (with-temp-buffer
(dotimes (_ 100)
(insert "."))) Evaluating this will trigger |
That makes sense - I didn't realise Thanks! |
Could this be related to why this function for me doesn't actually blink even though (beacon-blink) is specifically called. I just wanted beacon-blink to run after switching window configurations.:
|
Yes
|
I am having an issue with the combination of
eyebrowse
withbeacon-mode
. The issue is that the beacon shown bybeacon-mode
displays incorrectly (does not disappear as it should).The cause of this seems to be that beacon-mode hooks
before-change-functions
(see here), which is normally executed whenever changes are being made to a buffer. Wheneyebrowse-mode
is active, this hook seems to be run with every movement made in the buffer. Does anyone know what this behavior is being caused by?To check when the hook is being run I used the following:
The text was updated successfully, but these errors were encountered: