summaryrefslogtreecommitdiff
path: root/ale_linters/perl/perl.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/perl/perl.vim')
-rw-r--r--ale_linters/perl/perl.vim3
1 files changed, 0 insertions, 3 deletions
diff --git a/ale_linters/perl/perl.vim b/ale_linters/perl/perl.vim
index 9d24ed9a..23586a76 100644
--- a/ale_linters/perl/perl.vim
+++ b/ale_linters/perl/perl.vim
@@ -29,15 +29,12 @@ function! ale_linters#perl#perl#Handle(buffer, lines) abort
endif
let l:line = l:match[3]
- let l:column = 1
let l:text = l:match[1]
let l:type = 'E'
- " vcol is Needed to indicate that the column is a character.
call add(l:output, {
\ 'bufnr': a:buffer,
\ 'lnum': l:line,
- \ 'col': l:column,
\ 'text': l:text,
\ 'type': l:type,
\})