From cc0d39b528ea4d38b54ce4e40fa84c5024de5e7c Mon Sep 17 00:00:00 2001 From: LOTehan Date: Sun, 8 Aug 2021 02:18:04 +0800 Subject: [PATCH] color name is case-sensitive in the latest gvim --- doc/airline.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/airline.txt b/doc/airline.txt index be8f7e12..a962aca2 100644 --- a/doc/airline.txt +++ b/doc/airline.txt @@ -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() <