From 2472fe3ca0377fcb2991f5e419a3b42fc774756e Mon Sep 17 00:00:00 2001 From: Kamil Kisiel Date: Sat, 13 Apr 2013 20:35:27 -0700 Subject: [PATCH] Check for gofmt instead of go in the gofmt checker. --- syntax_checkers/go/gofmt.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax_checkers/go/gofmt.vim b/syntax_checkers/go/gofmt.vim index 4ecac92e..804065f9 100644 --- a/syntax_checkers/go/gofmt.vim +++ b/syntax_checkers/go/gofmt.vim @@ -18,7 +18,7 @@ endif let g:loaded_syntastic_go_gofmt_checker=1 function! SyntaxCheckers_go_gofmt_IsAvailable() - return executable('go') + return executable('gofmt') endfunction function! SyntaxCheckers_go_gofmt_GetLocList()