From 16a7a875292c95ed3a16e712f3505d92d37c37b3 Mon Sep 17 00:00:00 2001 From: Kamil Kisiel Date: Wed, 11 Apr 2012 08:19:57 -0700 Subject: [PATCH] Build all files with go build --- syntax_checkers/go/go.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax_checkers/go/go.vim b/syntax_checkers/go/go.vim index b9c31686..8b3dd5ca 100644 --- a/syntax_checkers/go/go.vim +++ b/syntax_checkers/go/go.vim @@ -10,7 +10,7 @@ " "============================================================================ 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#%.%#' return SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat })