diff options
Diffstat (limited to 'plugin')
| -rw-r--r-- | plugin/max-fix-colorschemes.vim | 11 | 
1 files changed, 7 insertions, 4 deletions
diff --git a/plugin/max-fix-colorschemes.vim b/plugin/max-fix-colorschemes.vim index abfa11a..a6fe45e 100644 --- a/plugin/max-fix-colorschemes.vim +++ b/plugin/max-fix-colorschemes.vim  | |||
| @@ -12,20 +12,23 @@ function! ExtendColorTheme() | |||
| 12 | highlight! SpellBad cterm=NONE gui=undercurl guibg=NONE guifg=red | 12 | highlight! SpellBad cterm=NONE gui=undercurl guibg=NONE guifg=red | 
| 13 | highlight! Ignore cterm=NONE ctermbg=NONE ctermfg=NONE gui=NONE guibg=NONE guifg=NONE | 13 | highlight! Ignore cterm=NONE ctermbg=NONE ctermfg=NONE gui=NONE guibg=NONE guifg=NONE | 
| 14 | highlight! Folded cterm=NONE ctermbg=NONE | 14 | highlight! Folded cterm=NONE ctermbg=NONE | 
| 15 | highlight! EndOfBuffer cterm=NONE ctermbg=255 ctermfg=255 | ||
| 16 | 15 | ||
| 17 | 16 | ||
| 17 | |||
| 18 | let w:color=synIDattr(hlID("Normal"), "bg#") | ||
| 19 | silent! exec 'highlight invisible gui=NONE guifg='.w:color.'guibg='.w:color.' cterm=NONE ctermfg='.w:color.' ctermbg='.w:color | ||
| 20 | |||
| 21 | highlight! link EndOfBuffer Invisible | ||
| 18 | highlight! link qfSeparator Normal | " reserve one space | 22 | highlight! link qfSeparator Normal | " reserve one space | 
| 19 | highlight! link qfLineNr Normal | " informational line numbers should look different | 23 | highlight! link qfLineNr Normal | " informational line numbers should look different | 
| 20 | 24 | ||
| 21 | highlight! link SpecialKey NonText | " makes tab stop (see listchars) less disturbing | 25 | highlight! link SpecialKey NonText | " makes tab stop (see listchars) less disturbing | 
| 22 | highlight! link WildMenu Search | 26 | highlight! link WildMenu Search | 
| 23 | highlight! link Convention Error | 27 | highlight! link Convention Error | 
| 24 | highlight! link VertSplit NonText | ||
| 25 | 28 | ||
| 26 | highlight! link VertSplit LineNr | 29 | highlight! link VertSplit LineNr | 
| 27 | highlight! link SignColumn NonText | 30 | highlight! link SignColumn LineNr | 
| 28 | highlight! link FoldColumn NonText | 31 | highlight! link FoldColumn LineNr | 
| 29 | 32 | ||
| 30 | highlight! link PmenuSbar Pmenu | 33 | highlight! link PmenuSbar Pmenu | 
| 31 | highlight! PmenuThumb cterm=inverse | 34 | highlight! PmenuThumb cterm=inverse | 
