summaryrefslogtreecommitdiff
path: root/ale_linters/sh/shell.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/sh/shell.vim')
-rw-r--r--ale_linters/sh/shell.vim3
1 files changed, 0 insertions, 3 deletions
diff --git a/ale_linters/sh/shell.vim b/ale_linters/sh/shell.vim
index c7365ae9..7ab98fd6 100644
--- a/ale_linters/sh/shell.vim
+++ b/ale_linters/sh/shell.vim
@@ -49,15 +49,12 @@ function! ale_linters#sh#shell#Handle(buffer, lines) abort
endif
let l:line = l:match[1] + 0
- let l:column = 1
let l:text = l:match[2]
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,
\})