mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-07 05:04:28 +08:00
fix the wrong variable name
This commit is contained in:
@@ -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')
|
let l:cleaned_line = substitute(l:line, '\x1b\[[0-9;]*m', '', 'g')
|
||||||
execute 'echo l:line'
|
execute 'echo l:line'
|
||||||
execute 'echo l:cleaned_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
|
if len(l:match) == 0
|
||||||
continue
|
continue
|
||||||
|
|||||||
Reference in New Issue
Block a user