summaryrefslogtreecommitdiff
path: root/ale_linters/go/gobuild.vim
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-04-24 21:11:27 +0100
committerw0rp <devw0rp@gmail.com>2017-04-24 21:11:33 +0100
commit99afe586b3a42adce580011079a83bbdaab675bd (patch)
tree348bed5d0b5e38ca8e908015d7e1b40167dd5184 /ale_linters/go/gobuild.vim
parent689921d7e3dd562383026c014d69d1ef011deeb9 (diff)
downloadale-99afe586b3a42adce580011079a83bbdaab675bd.zip
Simplify some code and format some tests better
Diffstat (limited to 'ale_linters/go/gobuild.vim')
-rw-r--r--ale_linters/go/gobuild.vim4
1 files changed, 0 insertions, 4 deletions
diff --git a/ale_linters/go/gobuild.vim b/ale_linters/go/gobuild.vim
index eee0bf84..419e67a0 100644
--- a/ale_linters/go/gobuild.vim
+++ b/ale_linters/go/gobuild.vim
@@ -50,15 +50,11 @@ function! ale_linters#go#gobuild#HandleGoBuildErrors(buffer, full_filename, line
continue
endif
- " vcol is Needed to indicate that the column is a character.
call add(l:output, {
- \ 'bufnr': a:buffer,
\ 'lnum': l:match[1] + 0,
- \ 'vcol': 0,
\ 'col': l:match[2] + 0,
\ 'text': l:match[3],
\ 'type': 'E',
- \ 'nr': -1,
\})
endfor