comparison src/highlight.c @ 18068:1101eacc1444 v8.1.2029

patch 8.1.2029: cannot control 'cursorline' highlighting well Commit: https://github.com/vim/vim/commit/017ba07fa2cdc578245618717229444fd50c470d Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 14 21:01:23 2019 +0200 patch 8.1.2029: cannot control 'cursorline' highlighting well Problem: Cannot control 'cursorline' highlighting well. Solution: Add "screenline". (Christian Brabandt, closes https://github.com/vim/vim/issues/4933)
author Bram Moolenaar <Bram@vim.org>
date Sat, 14 Sep 2019 21:15:04 +0200
parents 59f8948b7590
children c8a53c0daeed
comparison
equal deleted inserted replaced
18067:9e20b59dd8ab 18068:1101eacc1444
159 static char *(highlight_init_light[]) = { 159 static char *(highlight_init_light[]) = {
160 CENT("Directory term=bold ctermfg=DarkBlue", 160 CENT("Directory term=bold ctermfg=DarkBlue",
161 "Directory term=bold ctermfg=DarkBlue guifg=Blue"), 161 "Directory term=bold ctermfg=DarkBlue guifg=Blue"),
162 CENT("LineNr term=underline ctermfg=Brown", 162 CENT("LineNr term=underline ctermfg=Brown",
163 "LineNr term=underline ctermfg=Brown guifg=Brown"), 163 "LineNr term=underline ctermfg=Brown guifg=Brown"),
164 CENT("CursorLineNr term=bold ctermfg=Brown", 164 CENT("CursorLineNr term=bold cterm=underline ctermfg=Brown",
165 "CursorLineNr term=bold ctermfg=Brown gui=bold guifg=Brown"), 165 "CursorLineNr term=bold cterm=underline ctermfg=Brown gui=bold guifg=Brown"),
166 CENT("MoreMsg term=bold ctermfg=DarkGreen", 166 CENT("MoreMsg term=bold ctermfg=DarkGreen",
167 "MoreMsg term=bold ctermfg=DarkGreen gui=bold guifg=SeaGreen"), 167 "MoreMsg term=bold ctermfg=DarkGreen gui=bold guifg=SeaGreen"),
168 CENT("Question term=standout ctermfg=DarkGreen", 168 CENT("Question term=standout ctermfg=DarkGreen",
169 "Question term=standout ctermfg=DarkGreen gui=bold guifg=SeaGreen"), 169 "Question term=standout ctermfg=DarkGreen gui=bold guifg=SeaGreen"),
170 CENT("Search term=reverse ctermbg=Yellow ctermfg=NONE", 170 CENT("Search term=reverse ctermbg=Yellow ctermfg=NONE",
250 static char *(highlight_init_dark[]) = { 250 static char *(highlight_init_dark[]) = {
251 CENT("Directory term=bold ctermfg=LightCyan", 251 CENT("Directory term=bold ctermfg=LightCyan",
252 "Directory term=bold ctermfg=LightCyan guifg=Cyan"), 252 "Directory term=bold ctermfg=LightCyan guifg=Cyan"),
253 CENT("LineNr term=underline ctermfg=Yellow", 253 CENT("LineNr term=underline ctermfg=Yellow",
254 "LineNr term=underline ctermfg=Yellow guifg=Yellow"), 254 "LineNr term=underline ctermfg=Yellow guifg=Yellow"),
255 CENT("CursorLineNr term=bold ctermfg=Yellow", 255 CENT("CursorLineNr term=bold cterm=underline ctermfg=Yellow",
256 "CursorLineNr term=bold ctermfg=Yellow gui=bold guifg=Yellow"), 256 "CursorLineNr term=bold cterm=underline ctermfg=Yellow gui=bold guifg=Yellow"),
257 CENT("MoreMsg term=bold ctermfg=LightGreen", 257 CENT("MoreMsg term=bold ctermfg=LightGreen",
258 "MoreMsg term=bold ctermfg=LightGreen gui=bold guifg=SeaGreen"), 258 "MoreMsg term=bold ctermfg=LightGreen gui=bold guifg=SeaGreen"),
259 CENT("Question term=standout ctermfg=LightGreen", 259 CENT("Question term=standout ctermfg=LightGreen",
260 "Question term=standout ctermfg=LightGreen gui=bold guifg=Green"), 260 "Question term=standout ctermfg=LightGreen gui=bold guifg=Green"),
261 CENT("Search term=reverse ctermbg=Yellow ctermfg=Black", 261 CENT("Search term=reverse ctermbg=Yellow ctermfg=Black",