[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:
parent
2f9a1f2d33
commit
ef51e87126
|
@ -249,7 +249,7 @@ let g:lightline.component_expand={
|
||||||
let g:lightline.component_type={
|
let g:lightline.component_type={
|
||||||
\ 'readonly': 'error',
|
\ 'readonly': 'error',
|
||||||
\ 'linter_checking': 'left',
|
\ 'linter_checking': 'left',
|
||||||
\ 'linter_warnings': 'warning',
|
\ 'linter_warn': 'warning',
|
||||||
\ 'linter_errors': 'error',
|
\ 'linter_errors': 'error',
|
||||||
\ 'linter_ok': 'left',
|
\ 'linter_ok': 'left',
|
||||||
\ }
|
\ }
|
||||||
|
|
Loading…
Reference in a new issue