branch: elpa/apropospriate-theme
commit e33cce300f1df2188f012c06dad0f1920f4f8cd0
Author: justin talbott <[email protected]>
Commit: justin talbott <[email protected]>
don’t underline flymake-note
since it highlights the entire region that the note applies to, rather
than the first character/word like with flycheck, this can lead to
distractingly noisy underlining. relying on fringe indicators and
other methods of listing/displaying diagnostics is better.
---
apropospriate.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/apropospriate.el b/apropospriate.el
index 141e881..aea4e3f 100644
--- a/apropospriate.el
+++ b/apropospriate.el
@@ -276,7 +276,7 @@ Set to `1.0' or nil to prevent font size manipulation."
`(flycheck-inline-info ((,class (:foreground ,base03 :background
,base00-1 :inherit unspecified))))
`(flymake-error ((,class (:underline (:style wave :color ,red) :inherit
unspecified))))
`(flymake-warning ((,class (:underline (:style wave :color ,orange)
:inherit unspecified))))
- `(flymake-note ((,class (:underline (:style wave :color ,green) :inherit
unspecified))))
+ `(flymake-note ((,class (:underline nil :inherit unspecified))))
`(swoop-face-target-words ((,class (:foreground ,yellow))))
`(swoop-face-target-line ((,class (:background ,base01))))
`(swoop-face-line-buffer-name ((,class (:inherit header-line :foreground
,base02))))