comparison src/syntax.c @ 11541:3bc4fb330d07 v8.0.0653

patch 8.0.0653: the default highlight for QuickFixLine is not good commit https://github.com/vim/vim/commit/c768a208ca8e0e0fec900c18d5d9a593357ad793 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 22 16:04:27 2017 +0200 patch 8.0.0653: the default highlight for QuickFixLine is not good Problem: The default highlight for QuickFixLine does not work for several color schemes. (Manas Thakur) Solution: Make the default use the old color. (closes #1780)
author Christian Brabandt <cb@256bit.org>
date Thu, 22 Jun 2017 16:15:03 +0200
parents 998d2cf59caa
children 52e3a77c097b
comparison
equal deleted inserted replaced
11540:1bbefae25cfe 11541:3bc4fb330d07
6907 #endif 6907 #endif
6908 #ifdef FEAT_GUI 6908 #ifdef FEAT_GUI
6909 "Cursor guibg=fg guifg=bg", 6909 "Cursor guibg=fg guifg=bg",
6910 "lCursor guibg=fg guifg=bg", /* should be different, but what? */ 6910 "lCursor guibg=fg guifg=bg", /* should be different, but what? */
6911 #endif 6911 #endif
6912 "default link QuickFixLine Search",
6912 NULL 6913 NULL
6913 }; 6914 };
6914 6915
6915 static char *(highlight_init_light[]) = 6916 static char *(highlight_init_light[]) =
6916 { 6917 {
6995 "MatchParen term=reverse ctermbg=Cyan guibg=Cyan"), 6996 "MatchParen term=reverse ctermbg=Cyan guibg=Cyan"),
6996 #endif 6997 #endif
6997 #ifdef FEAT_GUI 6998 #ifdef FEAT_GUI
6998 "Normal gui=NONE", 6999 "Normal gui=NONE",
6999 #endif 7000 #endif
7000 CENT("QuickFixLine term=reverse ctermbg=Cyan",
7001 "QuickFixLine term=reverse ctermbg=Cyan guibg=Cyan"),
7002 NULL 7001 NULL
7003 }; 7002 };
7004 7003
7005 static char *(highlight_init_dark[]) = 7004 static char *(highlight_init_dark[]) =
7006 { 7005 {
7082 #endif 7081 #endif
7083 #ifdef FEAT_CONCEAL 7082 #ifdef FEAT_CONCEAL
7084 CENT("Conceal ctermbg=DarkGrey ctermfg=LightGrey", 7083 CENT("Conceal ctermbg=DarkGrey ctermfg=LightGrey",
7085 "Conceal ctermbg=DarkGrey ctermfg=LightGrey guibg=DarkGrey guifg=LightGrey"), 7084 "Conceal ctermbg=DarkGrey ctermfg=LightGrey guibg=DarkGrey guifg=LightGrey"),
7086 #endif 7085 #endif
7087 CENT("QuickFixLine term=reverse ctermbg=Cyan",
7088 "QuickFixLine term=reverse ctermbg=Cyan guibg=Cyan"),
7089 #ifdef FEAT_GUI 7086 #ifdef FEAT_GUI
7090 "Normal gui=NONE", 7087 "Normal gui=NONE",
7091 #endif 7088 #endif
7092 NULL 7089 NULL
7093 }; 7090 };