commit 86bac97580285f020621a94ee8649aee04867b08 parent d3a52e8c77c588a190714767f5f607ab7270bfec Author: KΓ©vin Le Gouguec <kevin.legouguec@gmail.com> Date: Sun, 12 Apr 2020 00:56:38 +0200 Tweak compilation lighter for Emacs 27 Diffstat:
| M | .emacs | | | 9 | +++++++-- |
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/.emacs b/.emacs @@ -186,8 +186,13 @@ ;; TODO: Narrow (β, βΆ) (if (< emacs-major-version 27) - (delight 'compilation-in-progress "β" 'compile) - (message "TODO: tweak compilation lighter")) + (delight 'compilation-in-progress + (propertize "β" 'face 'compilation-mode-line-run) + 'compile) + (let* ((indicator (alist-get 'compilation-in-progress mode-line-modes)) + (old-props (text-properties-at 0 (car indicator))) + (new-props '(face compilation-mode-line-run))) + (setcar indicator (apply #'propertize "β" (append new-props old-props))))) (add-hook 'magit-post-refresh-hook 'diff-hl-magit-post-refresh t)