Skip to content

Commit

Permalink
Merge pull request #1326 from tmc/coverage-args
Browse files Browse the repository at this point in the history
coverage.vim: pass along arguments to coverage_job
  • Loading branch information
fatih authored Jun 9, 2017
2 parents f5898d3 + b9bef68 commit 91b159a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/go/coverage.vim
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function! go#coverage#Buffer(bang, ...) abort

if go#util#has_job()
call s:coverage_job({
\ 'cmd': ['go', 'test', '-coverprofile', l:tmpname],
\ 'cmd': ['go', 'test', '-coverprofile', l:tmpname] + a:000,
\ 'custom_cb': function('s:coverage_callback', [l:tmpname]),
\ 'bang': a:bang,
\ })
Expand Down

0 comments on commit 91b159a

Please sign in to comment.