branch: externals/lin commit 7199e6a8e7fe6ae26acaaeabfaf0613e5f9db6cb Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Prevent underline of hl-line from bleeding through Thanks to Nicolas De Jaeghere for the feedback in issue 1: <https://gitlab.com/protesilaos/lin/-/issues/1>. --- lin.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lin.el b/lin.el index 9333deab72..34967edb5e 100644 --- a/lin.el +++ b/lin.el @@ -78,7 +78,7 @@ the `lin-hl-override-fg' is applied." :group 'lin) (defface lin-hl - '((default :foreground unspecified :extend t) + '((default :foreground unspecified :underline nil :extend t) (((class color) (min-colors 88) (background light)) :background "#b0d8ff") (((class color) (min-colors 88) (background dark)) @@ -89,7 +89,7 @@ Used only when `lin-override-foreground' is nil." :group 'lin) (defface lin-hl-override-fg - '((default :extend t) + '((default :underline nil :extend t) (((class color) (min-colors 88) (background light)) :background "#b0d8ff" :foreground "#000000") (((class color) (min-colors 88) (background dark))