[elpa] master f1a3ff5 1/3: Add mu4e-headers to dont-blink-modes

2017-10-17 Thread Artur Malabarba
branch: master
commit f1a3ff5ea8fecf9bf250205de66aedf0bf49c35b
Author: Artur Malabarba 
Commit: Artur Malabarba 

Add mu4e-headers to dont-blink-modes
---
 beacon.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/beacon.el b/beacon.el
index 2c33d5e..b69cc67 100644
--- a/beacon.el
+++ b/beacon.el
@@ -5,7 +5,7 @@
 ;; Author: Artur Malabarba 
 ;; URL: https://github.com/Malabarba/beacon
 ;; Keywords: convenience
-;; Version: 1.3.2
+;; Version: 1.3.3
 ;; Package-Requires: ((seq "2.14"))
 
 ;; This program is free software; you can redistribute it and/or modify
@@ -157,6 +157,7 @@ For instance, if you want to disable beacon on buffers where
 
 (defcustom beacon-dont-blink-major-modes '(t magit-status-mode magit-popup-mode
inf-ruby-mode
+   mu4e-headers-mode
gnus-summary-mode gnus-group-mode)
   "A list of major-modes where the beacon won't blink.
 Whenever the current buffer satisfies `derived-mode-p' for



[elpa] master updated (b629c75 -> 938054b)

2017-10-17 Thread Artur Malabarba
malabarba pushed a change to branch master.

  from  b629c75   * nlinum/nlinum.el: Don't assume nlinum-use-right-margin 
is fixed
   new  f1a3ff5   Add mu4e-headers to dont-blink-modes
   new  729338b   Fix off-by-1 error causing the beacon to wrap lines
   new  938054b   Merge commit '729338b02a0e331a4faf475da9f54771a3470106'


Summary of changes:
 packages/beacon/beacon.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)



[elpa] master 938054b 3/3: Merge commit '729338b02a0e331a4faf475da9f54771a3470106'

2017-10-17 Thread Artur Malabarba
branch: master
commit 938054bc6c62f72e74220493d9e23cd5ac90b2bf
Merge: b629c75 729338b
Author: Artur Malabarba 
Commit: Artur Malabarba 

Merge commit '729338b02a0e331a4faf475da9f54771a3470106'
---
 packages/beacon/beacon.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/packages/beacon/beacon.el b/packages/beacon/beacon.el
index 2c33d5e..f3cdea9 100644
--- a/packages/beacon/beacon.el
+++ b/packages/beacon/beacon.el
@@ -5,7 +5,7 @@
 ;; Author: Artur Malabarba 
 ;; URL: https://github.com/Malabarba/beacon
 ;; Keywords: convenience
-;; Version: 1.3.2
+;; Version: 1.3.3
 ;; Package-Requires: ((seq "2.14"))
 
 ;; This program is free software; you can redistribute it and/or modify
@@ -157,6 +157,7 @@ For instance, if you want to disable beacon on buffers where
 
 (defcustom beacon-dont-blink-major-modes '(t magit-status-mode magit-popup-mode
inf-ruby-mode
+   mu4e-headers-mode
gnus-summary-mode gnus-group-mode)
   "A list of major-modes where the beacon won't blink.
 Whenever the current buffer satisfies `derived-mode-p' for
@@ -237,7 +238,7 @@ The property's value is a string of spaces with background
 COLORS applied to each one."
   ;; The after-string must not be longer than the remaining columns
   ;; from point to right window-end else it will be wrapped around.
-  (let ((colors (seq-take colors (- (window-width) (current-column)
+  (let ((colors (seq-take colors (- (window-width) (current-column) 1
 (beacon--ov-put-after-string (beacon--make-overlay 0) colors)))
 
 (defun beacon--ov-at-point ()



[elpa] master 729338b 2/3: Fix off-by-1 error causing the beacon to wrap lines

2017-10-17 Thread Artur Malabarba
branch: master
commit 729338b02a0e331a4faf475da9f54771a3470106
Author: Artur Malabarba 
Commit: Artur Malabarba 

Fix off-by-1 error causing the beacon to wrap lines
---
 beacon.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/beacon.el b/beacon.el
index b69cc67..f3cdea9 100644
--- a/beacon.el
+++ b/beacon.el
@@ -238,7 +238,7 @@ The property's value is a string of spaces with background
 COLORS applied to each one."
   ;; The after-string must not be longer than the remaining columns
   ;; from point to right window-end else it will be wrapped around.
-  (let ((colors (seq-take colors (- (window-width) (current-column)
+  (let ((colors (seq-take colors (- (window-width) (current-column) 1
 (beacon--ov-put-after-string (beacon--make-overlay 0) colors)))
 
 (defun beacon--ov-at-point ()