Merge pull request #2417 from LOTehan/master

Fix "Cannot allocate color none"
This commit is contained in:
Christian Brabandt 2021-08-09 20:59:12 +02:00 committed by GitHub
commit e519b53cab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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()
<