From 06bbf9c45fcbf09a04a78a07a6de1dc4ac81fa10 Mon Sep 17 00:00:00 2001 From: George Thomas Date: Thu, 1 Feb 2018 12:09:08 +0530 Subject: [PATCH] Change flycheck underline style to line from wave --- railscasts-reloaded-theme.el | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/railscasts-reloaded-theme.el b/railscasts-reloaded-theme.el index 06a4b4d..fdef095 100644 --- a/railscasts-reloaded-theme.el +++ b/railscasts-reloaded-theme.el @@ -135,10 +135,15 @@ ;;;; flycheck `(flycheck-info - ((((supports :underline (:style wave))) - (:underline (:style wave :color ,railscasts-dark-green) :inherit unspecified)) + ((((supports :underline (:style line))) + (:underline (:style line :color ,railscasts-dark-green) :inherit unspecified)) (t (:foreground ,railscasts-dark-green :weight bold :underline t)))) `(flycheck-fringe-info ((t (:foreground ,railscasts-dark-green :weight bold)))) + `(flycheck-warning + ((((supports :underline (:style line))) + (:underline (:style line :color ,railscasts-orange) :inherit unspecified)) + (t (:foreground ,railscasts-orange :weight bold :underline t)))) + ;;;; company `(company-tooltip ((t (:foreground ,railscasts-fg :background ,railscasts-bg-2))))