From 15f2e2146855b61ec8c57b29af4928fcfec34be4 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 30 Jun 2018 02:52:57 +0200 Subject: [PATCH] On second thought... Causes char-table-p errors in some cases. Setting hscroll-margin = 0 in dashboard accomplishes the same thing, by preventing truncation glyphs from ever appearing anyway. --- core/core-ui.el | 3 --- modules/ui/doom-dashboard/config.el | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/core/core-ui.el b/core/core-ui.el index 276866ce3..63c280a9d 100644 --- a/core/core-ui.el +++ b/core/core-ui.el @@ -102,9 +102,6 @@ Also see `doom-before-switch-buffer-hook'.") (fset #'yes-or-no-p #'y-or-n-p) ; y/n instead of yes/no -;; Seriously, don't show glyphs on long-lines -(set-display-table-slot standard-display-table 0 ?\ ) - ;; ;; Shims diff --git a/modules/ui/doom-dashboard/config.el b/modules/ui/doom-dashboard/config.el index 57594f903..f613309f8 100644 --- a/modules/ui/doom-dashboard/config.el +++ b/modules/ui/doom-dashboard/config.el @@ -63,6 +63,7 @@ Possible values: buffer-read-only t) (setq-local whitespace-style nil) (setq-local show-trailing-whitespace nil) + (setq-local hscroll-margin 0) (cl-loop for (car . _cdr) in fringe-indicator-alist collect (cons car nil) into alist finally do (setq fringe-indicator-alist alist))