beacon icon indicating copy to clipboard operation
beacon copied to clipboard

beacon blinking constantly in scratch buffer (and some other buffers)

Open upgrd opened this issue 4 years ago • 2 comments

Beacon is blinking constantly in scratch buffer and some other buffers (maybe since update to Emacs 27?).

I have beacon set up like this:

(use-package beacon
  :ensure t
  :config
  (beacon-mode 1)
  (setq beacon-color "Magenta"
	beacon-blink-duration 0.01
	beacon-blink-delay 0.2))

beacon-blink-duration and beacon-blink-delay appear not to cause this, the issue remains when set to defaults.

upgrd avatar Sep 10 '20 18:09 upgrd

Verified. I saw this just now in my org agenda buffer, where the item I'm clocked in to had a constant blinking. I also saw it last night, when it would actually blink itself out of the screen. I suspect emacs 27?

WorldsEndless avatar Sep 23 '20 17:09 WorldsEndless

This is how I solved the issue: (setq beacon-blink-when-window-scrolls nil)

OsicKwon avatar Mar 29 '21 18:03 OsicKwon