fix the go syntax checkers with default go build mode
This commit is contained in:
parent
2c02edd174
commit
511733327d
@ -56,11 +56,11 @@ function! SyntaxCheckers_go_go_GetLocList() dict
|
|||||||
" compiled by `go build`, therefore `go test` must be called for those.
|
" compiled by `go build`, therefore `go test` must be called for those.
|
||||||
if bufname(buf) =~# '\m_test\.go$'
|
if bufname(buf) =~# '\m_test\.go$'
|
||||||
let cmd = 'test -c'
|
let cmd = 'test -c'
|
||||||
let opts = syntastic#util#bufVar(buf, 'go_go_test_args', s:go_new ? '-buildmode=archive' : '')
|
let opts = syntastic#util#bufVar(buf, 'go_go_test_args', s:go_new ? '-buildmode=default' : '')
|
||||||
let cleanup = 1
|
let cleanup = 1
|
||||||
else
|
else
|
||||||
let cmd = 'build'
|
let cmd = 'build'
|
||||||
let opts = syntastic#util#bufVar(buf, 'go_go_build_args', s:go_new ? '-buildmode=archive' : '')
|
let opts = syntastic#util#bufVar(buf, 'go_go_build_args', s:go_new ? '-buildmode=default' : '')
|
||||||
let cleanup = 0
|
let cleanup = 0
|
||||||
endif
|
endif
|
||||||
let opt_str = (type(opts) != type('') || opts !=# '') ? join(syntastic#util#argsescape(opts)) : opts
|
let opt_str = (type(opts) != type('') || opts !=# '') ? join(syntastic#util#argsescape(opts)) : opts
|
||||||
|
Loading…
Reference in New Issue
Block a user