From 6452c5e2f0aded3044a4263189f5b46c37409981 Mon Sep 17 00:00:00 2001 From: Ben Paxton Date: Tue, 20 Mar 2018 14:19:48 +0000 Subject: Use govet handler for gosimple, gotype, staticcheck --- autoload/ale/handlers/go.vim | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 autoload/ale/handlers/go.vim (limited to 'autoload') diff --git a/autoload/ale/handlers/go.vim b/autoload/ale/handlers/go.vim new file mode 100644 index 00000000..224df664 --- /dev/null +++ b/autoload/ale/handlers/go.vim @@ -0,0 +1,25 @@ +" Author: neersighted +" Description: go vet for Go files +" +" Author: John Eikenberry +" Description: updated to work with go1.10 +" +" Author: Ben Paxton +" Description: moved to generic Golang file from govet + +function! ale#handlers#go#Handler(buffer, lines) abort + let l:pattern = '\v^([a-zA-Z]?:?[^:]+):(\d+):?(\d+)?:? ?(.+)$' + let l:output = [] + let l:dir = expand('#' . a:buffer . ':p:h') + + for l:match in ale#util#GetMatches(a:lines, l:pattern) + call add(l:output, { + \ 'filename': ale#path#GetAbsPath(l:dir, l:match[1]), + \ 'lnum': l:match[2] + 0, + \ 'col': l:match[3] + 0, + \ 'text': l:match[4], + \ 'type': 'E', + \}) + endfor + return l:output +endfunction -- cgit v1.2.3