ui/doom-dashboard: fix trailing highlights in whitespace-mode #297

This commit is contained in:
Henrik Lissner 2017-12-22 16:33:08 -05:00
parent 317536a02a
commit 1873a48e71
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -25,6 +25,7 @@ loading.")
"Major mode for the DOOM dashboard buffer." "Major mode for the DOOM dashboard buffer."
(read-only-mode +1) (read-only-mode +1)
(setq truncate-lines t) (setq truncate-lines t)
(setq-local whitespace-style nil)
(cl-loop for (car . _cdr) in fringe-indicator-alist (cl-loop for (car . _cdr) in fringe-indicator-alist
collect (cons car nil) into alist collect (cons car nil) into alist
finally do (setq fringe-indicator-alist alist))) finally do (setq fringe-indicator-alist alist)))