diff options
| author | Protesilaos Stavrou <info@protesilaos.com> | 2022-08-27 12:53:18 +0300 |
|---|---|---|
| committer | Protesilaos Stavrou <info@protesilaos.com> | 2022-08-27 12:54:19 +0300 |
| commit | ffb4cfb760ffc810790a111f81fa8fb314cc1977 (patch) | |
| tree | 5c745b996ab5e54f8f3cf8a51389380fa3fd008b /ef-themes.el | |
| parent | da68699bf73007e5e4209ffb21ca8a9f83156686 (diff) | |
Decouple 'compilation-info' from 'success'
It made file names green in Grep and Xref buffers, which does not look
good in any theme. Using the "name" mapping gives us thematically
consistent results.
I inspected emacs.git to check if there is anything that uses
'compilation-info' to convey colour-coding along the lines of the
familiar red-green dichotomy, but could not find anything. As such, I
am treating this face in more flexible terms.
Diffstat (limited to 'ef-themes.el')
| -rw-r--r-- | ef-themes.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ef-themes.el b/ef-themes.el index 031f60b..5c5512f 100644 --- a/ef-themes.el +++ b/ef-themes.el @@ -656,7 +656,7 @@ Helper function for `ef-themes-preview-colors'." ;;;; compilation `(compilation-column-number ((,c :inherit compilation-line-number))) `(compilation-error ((,c :inherit error))) - `(compilation-info ((,c :inherit success))) + `(compilation-info ((,c :inherit bold :foreground ,name))) `(compilation-line-number ((,c :inherit shadow))) `(compilation-mode-line-exit ((,c :inherit bold))) `(compilation-mode-line-fail ((,c :inherit error))) |
