branch: elpa/auto-dim-other-buffers
commit 242447611496d947c3c9c14e0927436fca10b4f5
Author: Steven Degutis <[email protected]>
Commit: Steven Degutis <[email protected]>
fix some stuff
---
auto-dim-other-buffers.el | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/auto-dim-other-buffers.el b/auto-dim-other-buffers.el
index 8806ddad13..35734041d9 100644
--- a/auto-dim-other-buffers.el
+++ b/auto-dim-other-buffers.el
@@ -6,7 +6,7 @@
(defface auto-dim-other-buffers-face '((t :background "black"))
"Face (presumably dimmed somehow) for non-current buffers."
- :group 'auto-dim-other-buffers-mode)
+ :group 'auto-dim-other-buffers)
(defun adob/pre-command-hook ()
(setq adob/last-buffer (current-buffer)))
@@ -58,7 +58,8 @@
(define-minor-mode auto-dim-other-buffers-mode
"Visually makes non-current buffers less prominent"
- :lighter " auto-dim"
+ :lighter " Auto-Dim"
+ :global t
(if auto-dim-other-buffers-mode
(turn-on-auto-dim-other-buffers)
(turn-off-auto-dim-other-buffers)))