]> git.r.bdr.sh - rbdr/dotfiles/blob - vim/syntax_checkers/go.vim
Add vim again :)
[rbdr/dotfiles] / vim / syntax_checkers / go.vim
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 "============================================================================
16 if exists("loaded_go_syntax_checker")
17 finish
18 endif
19 let loaded_go_syntax_checker = 1
20
21 let s:supported_checkers = ["6g", "gofmt"]
22 call SyntasticLoadChecker(s:supported_checkers)