diff options
Diffstat (limited to 'ale_linters/slim/slimlint.vim')
-rw-r--r-- | ale_linters/slim/slimlint.vim | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/ale_linters/slim/slimlint.vim b/ale_linters/slim/slimlint.vim index 8613951b..74796b2b 100644 --- a/ale_linters/slim/slimlint.vim +++ b/ale_linters/slim/slimlint.vim @@ -7,15 +7,8 @@ function! ale_linters#slim#slimlint#Handle(buffer, lines) abort let l:pattern = '\v^.*:(\d+) \[([EW])\] (.+)$' let l:output = [] - for l:line in a:lines - let l:match = matchlist(l:line, l:pattern) - - if len(l:match) == 0 - continue - endif - + for l:match in ale#util#GetMatches(a:lines, l:pattern) call add(l:output, { - \ 'bufnr': a:buffer, \ 'lnum': l:match[1] + 0, \ 'type': l:match[2], \ 'text': l:match[3] |