branch: elpa/spacemacs-theme
commit 8964145da9859b93ea7157e477913d795a44a8ff
Author: Alex Branham <[email protected]>
Commit: Alex Branham <[email protected]>
Add support for flymake errors, notes, and warnings
---
spacemacs-common.el | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/spacemacs-common.el b/spacemacs-common.el
index 41ee8416f8..152533d56e 100644
--- a/spacemacs-common.el
+++ b/spacemacs-common.el
@@ -372,6 +372,17 @@ to 'auto, tags may not be properly aligned. "
(:underline (:style line :color ,war)))
(,class (:foreground ,base :background ,war :inherit bold :underline
t))))
+;;;;; flymake
+ `(flymake-error ((,(append '((supports :underline (:style line))) class)
+ (:underline (:style line :color ,err)))
+ (,class (:foreground ,base :background ,err :inherit
bold :underline t))))
+ `(flymake-note ((,(append '((supports :underline (:style line))) class)
+ (:underline (:style wave :color ,keyword)))
+ (,class (:foreground ,base :background ,keyword :inherit
bold :underline t))))
+ `(flymake-warning ((,(append '((supports :underline (:style line))) class)
+ (:underline (:style line :color ,war)))
+ (,class (:foreground ,base :background ,war :inherit
bold :underline t))))
+
;;;;; jabber
`(jabber-activity-face ((,class (:inherit bold :foreground ,red))))
`(jabber-activity-personal-face ((,class (:inherit bold :foreground
,blue))))