]> git.r.bdr.sh - rbdr/dotfiles/blame - vim/syntax_checkers/go.vim
A whole bunch of new additions to the submodules
[rbdr/dotfiles] / vim / syntax_checkers / go.vim
CommitLineData
0d23b6e5
BB
1"============================================================================
2"File: go.vim
3"Description: Loads a go syntax checker from the go directory
4"Maintainer: Martin Grenfell <martin.grenfell at gmail dot com>
5"License: This program is free software. It comes without any warranty,
6" to the extent permitted by applicable law. You can redistribute
7" it and/or modify it under the terms of the Do What The Fuck You
8" Want To Public License, Version 2, as published by Sam Hocevar.
9" See http://sam.zoy.org/wtfpl/COPYING for more details.
10"
11" Use g:syntastic_go_checker option to specify which go executable
12" should be used (see below for a list of supported checkers).
13" If g:syntastic_go_checker is not set, just use the first syntax
14" checker that we find installed.
15"============================================================================
16if exists("loaded_go_syntax_checker")
17 finish
18endif
19let loaded_go_syntax_checker = 1
20
21let s:supported_checkers = ["6g", "gofmt"]
22call SyntasticLoadChecker(s:supported_checkers)