Build all files with go build

This commit is contained in:
Kamil Kisiel 2012-04-11 08:19:57 -07:00
parent 4b61f4b2b9
commit 16a7a87529

View File

@ -10,7 +10,7 @@
" "
"============================================================================ "============================================================================
function! SyntaxCheckers_go_GetLocList() function! SyntaxCheckers_go_GetLocList()
let makeprg = 'go build -o /dev/null %' let makeprg = 'go build -o /dev/null'
let errorformat = '%f:%l:%c:%m,%f:%l%m,%-G#%.%#' let errorformat = '%f:%l:%c:%m,%f:%l%m,%-G#%.%#'
return SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat }) return SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat })