2012-03-29 10:48:52 -04:00
|
|
|
"============================================================================
|
|
|
|
"File: go.vim
|
2012-10-26 06:27:37 -04:00
|
|
|
"Description: Check go syntax using 'gofmt -l' followed by 'go [build|test]'
|
2012-03-29 10:48:52 -04:00
|
|
|
"Maintainer: Kamil Kisiel <kamil@kamilkisiel.net>
|
|
|
|
"License: This program is free software. It comes without any warranty,
|
|
|
|
" to the extent permitted by applicable law. You can redistribute
|
|
|
|
" it and/or modify it under the terms of the Do What The Fuck You
|
|
|
|
" Want To Public License, Version 2, as published by Sam Hocevar.
|
|
|
|
" See http://sam.zoy.org/wtfpl/COPYING for more details.
|
|
|
|
"
|
2014-11-21 03:01:24 -05:00
|
|
|
"============================================================================
|
|
|
|
"
|
2012-10-26 06:27:37 -04:00
|
|
|
" This syntax checker does not reformat your source code.
|
|
|
|
" Use a BufWritePre autocommand to that end:
|
|
|
|
" autocmd FileType go autocmd BufWritePre <buffer> Fmt
|
2014-01-03 04:29:08 -05:00
|
|
|
|
2013-02-21 10:50:41 -05:00
|
|
|
if exists("g:loaded_syntastic_go_go_checker")
|
|
|
|
finish
|
|
|
|
endif
|
2014-01-03 04:29:08 -05:00
|
|
|
let g:loaded_syntastic_go_go_checker = 1
|
|
|
|
|
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
2013-02-21 10:50:41 -05:00
|
|
|
|
2013-10-28 11:30:25 -04:00
|
|
|
function! SyntaxCheckers_go_go_IsAvailable() dict
|
2014-12-11 05:38:10 -05:00
|
|
|
return executable(self.getExec()) && executable('gofmt')
|
2013-01-27 15:08:30 -05:00
|
|
|
endfunction
|
|
|
|
|
2013-10-28 07:53:33 -04:00
|
|
|
function! SyntaxCheckers_go_go_GetLocList() dict
|
2012-10-26 06:27:37 -04:00
|
|
|
" Check with gofmt first, since `go build` and `go test` might not report
|
|
|
|
" syntax errors in the current file if another file with syntax error is
|
|
|
|
" compiled first.
|
2013-11-01 05:51:47 -04:00
|
|
|
let makeprg = self.makeprgBuild({
|
2013-06-07 14:18:29 -04:00
|
|
|
\ 'exe': 'gofmt',
|
|
|
|
\ 'args': '-l',
|
2013-11-01 05:51:47 -04:00
|
|
|
\ 'tail': '> ' . syntastic#util#DevNull() })
|
2012-10-26 06:27:37 -04:00
|
|
|
|
2013-06-07 14:18:29 -04:00
|
|
|
let errorformat =
|
|
|
|
\ '%f:%l:%c: %m,' .
|
|
|
|
\ '%-G%.%#'
|
|
|
|
|
|
|
|
let errors = SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
|
|
|
\ 'defaults': {'type': 'e'} })
|
2012-10-26 06:27:37 -04:00
|
|
|
if !empty(errors)
|
|
|
|
return errors
|
|
|
|
endif
|
|
|
|
|
2012-10-26 06:23:00 -04:00
|
|
|
" Test files, i.e. files with a name ending in `_test.go`, are not
|
|
|
|
" compiled by `go build`, therefore `go test` must be called for those.
|
2015-01-04 02:01:55 -05:00
|
|
|
if match(expand('%', 1), '\m_test\.go$') == -1
|
2015-01-15 11:06:46 -05:00
|
|
|
let cmd = 'build'
|
2015-01-09 23:16:32 -05:00
|
|
|
let opts = syntastic#util#var('go_go_build_args')
|
2014-02-09 12:21:34 -05:00
|
|
|
let cleanup = 0
|
2012-10-26 06:23:00 -04:00
|
|
|
else
|
2015-01-15 11:06:46 -05:00
|
|
|
let cmd = 'test -c'
|
2015-01-09 23:16:32 -05:00
|
|
|
let opts = syntastic#util#var('go_go_test_args')
|
2014-02-09 12:21:34 -05:00
|
|
|
let cleanup = 1
|
2012-10-26 06:23:00 -04:00
|
|
|
endif
|
2015-01-15 11:06:46 -05:00
|
|
|
let opt_str = (type(opts) != type('') || opts != '') ? join(syntastic#util#argsescape(opts)) : opts
|
|
|
|
let makeprg = self.getExec() . ' ' . cmd . ' ' . opt_str . ' ' . syntastic#c#NullOutput()
|
2013-06-07 14:18:29 -04:00
|
|
|
|
2014-02-14 15:32:57 -05:00
|
|
|
" The first pattern is for warnings from C compilers.
|
2013-06-07 14:18:29 -04:00
|
|
|
let errorformat =
|
2014-02-14 15:32:57 -05:00
|
|
|
\ '%W%f:%l: warning: %m,' .
|
2013-09-26 18:53:11 -04:00
|
|
|
\ '%E%f:%l:%c:%m,' .
|
2013-09-27 13:55:56 -04:00
|
|
|
\ '%E%f:%l:%m,' .
|
2013-09-27 11:59:01 -04:00
|
|
|
\ '%C%\s%\+%m,' .
|
|
|
|
\ '%-G#%.%#'
|
2012-03-29 10:48:52 -04:00
|
|
|
|
2012-10-26 06:16:08 -04:00
|
|
|
" The go compiler needs to either be run with an import path as an
|
|
|
|
" argument or directly from the package directory. Since figuring out
|
2013-06-11 14:36:44 -04:00
|
|
|
" the proper import path is fickle, just cwd to the package.
|
2012-10-26 06:16:08 -04:00
|
|
|
|
2013-06-07 14:18:29 -04:00
|
|
|
let errors = SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
2015-01-04 02:01:55 -05:00
|
|
|
\ 'cwd': expand('%:p:h', 1),
|
2013-06-07 14:18:29 -04:00
|
|
|
\ 'defaults': {'type': 'e'} })
|
2012-10-26 06:16:08 -04:00
|
|
|
|
2014-02-09 12:21:34 -05:00
|
|
|
if cleanup
|
2015-01-04 02:01:55 -05:00
|
|
|
call delete(expand('%:p:h', 1) . syntastic#util#Slash() . expand('%:p:h:t', 1) . '.test')
|
2014-02-09 12:21:34 -05:00
|
|
|
endif
|
|
|
|
|
2012-10-26 06:16:08 -04:00
|
|
|
return errors
|
2012-03-29 10:48:52 -04:00
|
|
|
endfunction
|
2013-01-27 15:08:30 -05:00
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'go',
|
|
|
|
\ 'name': 'go'})
|
2014-01-03 04:29:08 -05:00
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
2015-01-04 05:46:54 -05:00
|
|
|
" vim: set sw=4 sts=4 et fdm=marker:
|