diff options
Diffstat (limited to 'ale_linters/php/php.vim')
-rw-r--r-- | ale_linters/php/php.vim | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ale_linters/php/php.vim b/ale_linters/php/php.vim index d95e28a8..aa5229cf 100644 --- a/ale_linters/php/php.vim +++ b/ale_linters/php/php.vim @@ -20,11 +20,9 @@ function! ale_linters#php#php#Handle(buffer, lines) abort call add(l:output, { \ 'bufnr': a:buffer, \ 'lnum': l:match[3] + 0, - \ 'vcol': 0, \ 'col': empty(l:match[2]) ? 0 : stridx(getline(l:match[3]), l:match[2]) + 1, \ 'text': l:match[1], \ 'type': 'E', - \ 'nr': -1, \}) endfor |