branch: externals/bufferlo
commit 7694fe8a94916d7c3d49d9cb5e4576aace8fb3e7
Author: shipmints <[email protected]>
Commit: shipmints <[email protected]>
Refine mode-line to accommodate tty rendering.
---
bufferlo.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/bufferlo.el b/bufferlo.el
index 94ffc7159a..f774036966 100644
--- a/bufferlo.el
+++ b/bufferlo.el
@@ -470,9 +470,9 @@ Set to 0 to disable the timer. Units are whole integer
seconds."
(tbm (alist-get 'bufferlo-bookmark-tab-name
(tab-bar--current-tab-find))))
(concat bufferlo-mode-line-lighter-prefix
"["
- (if fbm (concat "Ⓕ" fbm))
+ (if fbm (concat "Ⓕ " fbm)) ; the space accommodates tty rendering
(if (and fbm tbm) " ")
- (if tbm (concat "Ⓣ" tbm))
+ (if tbm (concat "Ⓣ " tbm)) ; the space accommodates tty rendering
"]"))))
(defcustom bufferlo-mode-line-lighter '(:eval (bufferlo-mode-line-format))