branch: externals/gnosis
commit 915731ca49066556bff43cfbc76788ccc26f532b
Author: Thanos Apollo <[email protected]>
Commit: Thanos Apollo <[email protected]>

    [fix] dashboard-mode: fix trucate-string-ellipsis.
    
    * If char "…" is used, depending on the font, it can mess up the
      column-width adjustments.
---
 gnosis-dashboard.el | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnosis-dashboard.el b/gnosis-dashboard.el
index c0481e0966..3ab3538b92 100644
--- a/gnosis-dashboard.el
+++ b/gnosis-dashboard.el
@@ -625,6 +625,8 @@ When called with a prefix, unsuspend all themata of deck."
   :keymap gnosis-dashboard-mode-map
   :interactive nil
   (setq-local header-line-format nil)
+  ;; Character "…" can mess up column-width depending on the font used.
+  (setq-local truncate-string-ellipsis "...")
   ;; Dashboard always centers content
   (setq-local gnosis-center-content t)
   (setq tabulated-list-padding 2

Reply via email to