2012-03-29 07:48:52 -07:00
|
|
|
"============================================================================
|
|
|
|
"File: go.vim
|
2012-10-26 12:27:37 +02:00
|
|
|
"Description: Check go syntax using 'gofmt -l' followed by 'go [build|test]'
|
2012-03-29 07:48:52 -07: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 10:01:24 +02:00
|
|
|
"============================================================================
|
|
|
|
"
|
2012-10-26 12:27:37 +02: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 11:29:08 +02:00
|
|
|
|
2015-03-25 18:44:34 +02:00
|
|
|
if exists('g:loaded_syntastic_go_go_checker')
|
2013-02-21 15:50:41 +00:00
|
|
|
finish
|
|
|
|
endif
|
2014-01-03 11:29:08 +02:00
|
|
|
let g:loaded_syntastic_go_go_checker = 1
|
|
|
|
|
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
2013-02-21 15:50:41 +00:00
|
|
|
|
2013-10-28 17:30:25 +02:00
|
|
|
function! SyntaxCheckers_go_go_IsAvailable() dict
|
2014-12-11 12:38:10 +02:00
|
|
|
return executable(self.getExec()) && executable('gofmt')
|
2013-01-27 20:08:30 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-10-28 13:53:33 +02:00
|
|
|
function! SyntaxCheckers_go_go_GetLocList() dict
|
2015-09-06 18:38:21 +03:00
|
|
|
if !exists('s:go_new')
|
|
|
|
let s:go_new = syntastic#util#versionIsAtLeast(self.getVersion(self.getExecEscaped() . ' version'), [1, 5])
|
|
|
|
endif
|
2017-02-15 08:48:45 +02:00
|
|
|
let buf = bufnr('')
|
2015-09-06 18:38:21 +03:00
|
|
|
|
2012-10-26 12:27:37 +02: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 11:51:47 +02:00
|
|
|
let makeprg = self.makeprgBuild({
|
2013-06-07 21:18:29 +03:00
|
|
|
\ 'exe': 'gofmt',
|
|
|
|
\ 'args': '-l',
|
2013-11-01 11:51:47 +02:00
|
|
|
\ 'tail': '> ' . syntastic#util#DevNull() })
|
2012-10-26 12:27:37 +02:00
|
|
|
|
2013-06-07 21:18:29 +03:00
|
|
|
let errorformat =
|
|
|
|
\ '%f:%l:%c: %m,' .
|
|
|
|
\ '%-G%.%#'
|
|
|
|
|
|
|
|
let errors = SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
|
|
|
\ 'defaults': {'type': 'e'} })
|
2012-10-26 12:27:37 +02:00
|
|
|
if !empty(errors)
|
|
|
|
return errors
|
|
|
|
endif
|
|
|
|
|
2012-10-26 12:23:00 +02: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.
|
2017-02-15 08:48:45 +02:00
|
|
|
if bufname(buf) =~# '\m_test\.go$'
|
2015-01-15 18:06:46 +02:00
|
|
|
let cmd = 'test -c'
|
2018-04-08 19:10:56 +08:00
|
|
|
let opts = syntastic#util#bufVar(buf, 'go_go_test_args', s:go_new ? '-buildmode=default' : '')
|
2014-02-09 19:21:34 +02:00
|
|
|
let cleanup = 1
|
2017-02-15 08:48:45 +02:00
|
|
|
else
|
|
|
|
let cmd = 'build'
|
2018-04-08 19:10:56 +08:00
|
|
|
let opts = syntastic#util#bufVar(buf, 'go_go_build_args', s:go_new ? '-buildmode=default' : '')
|
2017-02-15 08:48:45 +02:00
|
|
|
let cleanup = 0
|
2012-10-26 12:23:00 +02:00
|
|
|
endif
|
2015-03-25 18:44:34 +02:00
|
|
|
let opt_str = (type(opts) != type('') || opts !=# '') ? join(syntastic#util#argsescape(opts)) : opts
|
2015-09-01 07:20:23 +03:00
|
|
|
let makeprg = self.getExecEscaped() . ' ' . cmd . ' ' . opt_str
|
2013-06-07 21:18:29 +03:00
|
|
|
|
2014-02-14 12:32:57 -08:00
|
|
|
" The first pattern is for warnings from C compilers.
|
2013-06-07 21:18:29 +03:00
|
|
|
let errorformat =
|
2014-02-14 12:32:57 -08:00
|
|
|
\ '%W%f:%l: warning: %m,' .
|
2013-09-26 15:53:11 -07:00
|
|
|
\ '%E%f:%l:%c:%m,' .
|
2013-09-27 20:55:56 +03:00
|
|
|
\ '%E%f:%l:%m,' .
|
2013-09-27 08:59:01 -07:00
|
|
|
\ '%C%\s%\+%m,' .
|
2015-09-06 18:38:21 +03:00
|
|
|
\ '%+Ecan''t load package: %m,' .
|
|
|
|
\ '%+Einternal error: %m,' .
|
2013-09-27 08:59:01 -07:00
|
|
|
\ '%-G#%.%#'
|
2012-03-29 07:48:52 -07:00
|
|
|
|
2012-10-26 12:16:08 +02: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 21:36:44 +03:00
|
|
|
" the proper import path is fickle, just cwd to the package.
|
2012-10-26 12:16:08 +02:00
|
|
|
|
2013-06-07 21:18:29 +03:00
|
|
|
let errors = SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
2017-02-15 08:48:45 +02:00
|
|
|
\ 'cwd': fnamemodify(bufname(buf), ':p:h'),
|
2015-08-27 10:17:06 +01:00
|
|
|
\ 'env': {'GOGC': 'off'},
|
2013-06-07 21:18:29 +03:00
|
|
|
\ 'defaults': {'type': 'e'} })
|
2012-10-26 12:16:08 +02:00
|
|
|
|
2014-02-09 19:21:34 +02:00
|
|
|
if cleanup
|
2017-02-15 08:48:45 +02:00
|
|
|
call delete(fnamemodify(bufname(buf), ':p:h') . syntastic#util#Slash() . fnamemodify(bufname(buf), ':p:h') . '.test')
|
2014-02-09 19:21:34 +02:00
|
|
|
endif
|
|
|
|
|
2012-10-26 12:16:08 +02:00
|
|
|
return errors
|
2012-03-29 07:48:52 -07:00
|
|
|
endfunction
|
2013-01-27 20:08:30 +00:00
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'go',
|
|
|
|
\ 'name': 'go'})
|
2014-01-03 11:29:08 +02:00
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
2015-01-04 12:46:54 +02:00
|
|
|
" vim: set sw=4 sts=4 et fdm=marker:
|