From ee6dd64430d8b94265cf25cb26e0e408a940580a Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 27 Aug 2021 12:03:41 -0700 Subject: [PATCH] =?UTF-8?q?[oni-core]=20Don=E2=80=99t=20blink=20=E2=80=98b?= =?UTF-8?q?eacon=E2=80=99=20in=20Circe=20channel=20buffers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Beacon blinks a lot when new messages come in and when I type long sentences. In Circe buffers this really isn’t necessary. --- oni-ui.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/oni-ui.el b/oni-ui.el index 2ab5257..adc0e5a 100644 --- a/oni-ui.el +++ b/oni-ui.el @@ -4,7 +4,7 @@ ;; Author: Tom Willemse ;; Keywords: local -;; Version: 2020.1218.000836 +;; Version: 2021.0827.110905 ;; Package-Requires: (beacon diminish) ;; This program is free software; you can redistribute it and/or modify @@ -30,7 +30,9 @@ (require 'diminish) (require 'tool-bar) -(with-eval-after-load 'beacon (diminish 'beacon-mode)) +(with-eval-after-load 'beacon + (diminish 'beacon-mode) + (add-to-list 'beacon-dont-blink-major-modes 'circe-channel-mode)) (menu-bar-mode -1) (tool-bar-mode -1)