mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/vim-go/autoload/go/errcheck.vim

43 lines
1.2 KiB
VimL
Raw Normal View History

2014-10-31 17:30:24 -04:00
if !exists("g:go_errcheck_bin")
let g:go_errcheck_bin = "errcheck"
endif
2015-01-18 07:58:28 -05:00
function! go#errcheck#Run(...) abort
if a:0 == 0
let package = go#package#ImportPath(expand('%:p:h'))
else
let package = a:1
end
let bin_path = go#tool#BinPath(g:go_errcheck_bin)
if empty(bin_path)
return
2014-10-31 17:30:24 -04:00
endif
2015-01-18 07:58:28 -05:00
let out = system(bin_path . ' ' . package)
2014-10-31 17:30:24 -04:00
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)
2015-01-18 07:58:28 -05:00
call add(errors, {"filename": expand(DefaultGoPath() . "/src/" . tokens[1]),
2014-10-31 17:30:24 -04:00
\"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