color name is case-sensitive in the latest gvim

This commit is contained in:
LOTehan 2021-08-08 02:18:04 +08:00
parent 0cfd829c92
commit cc0d39b528
1 changed files with 2 additions and 2 deletions

View File

@ -178,8 +178,8 @@ values):
* if you want to update your highlights without affecting the airline theme,
you can do so using the AirlineAfterTheme autocmd. >
function! s:update_highlights()
hi CursorLine ctermbg=none guibg=none
hi VertSplit ctermbg=none guibg=none
hi CursorLine ctermbg=none guibg=NONE
hi VertSplit ctermbg=none guibg=NONE
endfunction
autocmd User AirlineAfterTheme call s:update_highlights()
<