36 lines
1 KiB
VimL
36 lines
1 KiB
VimL
if !exists("g:go_errcheck_bin")
|
|
let g:go_errcheck_bin = "errcheck"
|
|
endif
|
|
|
|
function! go#errcheck#Run() abort
|
|
let bin_path = go#tool#BinPath(g:go_errcheck_bin)
|
|
if empty(bin_path)
|
|
return
|
|
endif
|
|
|
|
let out = system(bin_path . ' ' . shellescape(expand('%:p:h')))
|
|
if v:shell_error
|
|
let errors = []
|
|
let mx = '^\(.\{-}\):\(\d\+\):\(\d\+\)\s*\(.*\)'
|
|
for line in split(out, '\n')
|
|
let tokens = matchlist(line, mx)
|
|
|
|
if !empty(tokens)
|
|
call add(errors, {"filename": tokens[1],
|
|
\"lnum": tokens[2],
|
|
\"col": tokens[3],
|
|
\"text": tokens[4]})
|
|
endif
|
|
endfor
|
|
if empty(errors)
|
|
% | " Couldn't detect error format, output errors
|
|
endif
|
|
if !empty(errors)
|
|
call setqflist(errors, 'r')
|
|
endif
|
|
echohl Error | echomsg "GoErrCheck returned error" | echohl None
|
|
else
|
|
call setqflist([])
|
|
endif
|
|
cwindow
|
|
endfunction
|