1
0
mirror of https://github.com/amix/vimrc synced 2025-09-18 02:25:01 +08:00

Update the plugins

This commit is contained in:
Rob Loach
2024-09-19 00:58:15 -04:00
parent ee7e062909
commit 22cf44758f
197 changed files with 306893 additions and 203607 deletions

View File

@ -57,12 +57,14 @@ function! ale_linters#php#phpstan#Handle(buffer, lines) abort
return l:output
endif
for l:err in l:res.files[expand('#' . a:buffer .':p')].messages
call add(l:output, {
\ 'lnum': l:err.line,
\ 'text': l:err.message,
\ 'type': 'E',
\})
for l:key in keys(l:res.files)
for l:err in l:res.files[l:key].messages
call add(l:output, {
\ 'lnum': l:err.line,
\ 'text': l:err.message,
\ 'type': 'E',
\})
endfor
endfor
return l:output