[FIX][VIM] Correct ALE warning color in lightline

Because of a typo, the background color was not changed when warnings
were displayed.
This commit is contained in:
Bruno BELANYI 2019-10-21 13:59:37 +02:00
parent 2f9a1f2d33
commit ef51e87126

View file

@ -249,7 +249,7 @@ let g:lightline.component_expand={
let g:lightline.component_type={
\ 'readonly': 'error',
\ 'linter_checking': 'left',
\ 'linter_warnings': 'warning',
\ 'linter_warn': 'warning',
\ 'linter_errors': 'error',
\ 'linter_ok': 'left',
\ }