Fix incorrect warning match

Co-Authored-By: luan <github@luan.sh>
This commit is contained in:
w0rp 2018-11-06 11:31:17 -08:00 committed by GitHub
parent c41dbe2ba9
commit 25068de91d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ function! ale#cursor#EchoCursorWarning(...) abort
if l:type is# 'E'
let l:hl_group = 'ALEError'
elseif l:type is# 'I'
elseif l:type is# 'W'
let l:hl_group = 'ALEWarning'
endif