fix the wrong variable name

This commit is contained in:
Atsuya Takagi 2021-01-02 16:54:06 +09:00
parent 9eb6dace88
commit b3010ad793
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ function! ale_linters#vala#vala_lint#Handle(buffer, lines) abort
let l:cleaned_line = substitute(l:line, '\x1b\[[0-9;]*m', '', 'g')
execute 'echo l:line'
execute 'echo l:cleaned_line'
let l:match = matchlist(l:cleaned, l:pattern)
let l:match = matchlist(l:cleaned_line, l:pattern)
if len(l:match) == 0
continue