From e413ea04b716effb28eb49dbc98ad3f9f761545a Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 24 Nov 2021 16:20:13 +0000 Subject: patch 8.2.3664: cannot adjust sign highlighting for 'cursorline' Problem: Cannot adjust sign highlighting for 'cursorline'. Solution: Add CursorLineSign and CursorLineFold highlight groups. (Gregory Anders, closes #9201) --- src/highlight.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/highlight.c') diff --git a/src/highlight.c b/src/highlight.c index 77ad0bc78..fe4f089ed 100644 --- a/src/highlight.c +++ b/src/highlight.c @@ -153,6 +153,8 @@ static char *(highlight_init_both[]) = { "lCursor guibg=fg guifg=bg", // should be different, but what? #endif "default link QuickFixLine Search", + "default link CursorLineSign SignColumn", + "default link CursorLineFold FoldColumn", CENT("Normal cterm=NONE", "Normal gui=NONE"), NULL }; -- cgit v1.2.1