Merge pull request #997 from kisielk/go_c_warnings

Add pattern to match warnings from C compilers when checking Go code.
This commit is contained in:
LCD 047 2014-02-14 22:42:51 +02:00
commit bc9620eed9

View File

@ -56,7 +56,9 @@ function! SyntaxCheckers_go_go_GetLocList() dict
let cleanup = 1
endif
" The first pattern is for warnings from C compilers.
let errorformat =
\ '%W%f:%l: warning: %m,' .
\ '%E%f:%l:%c:%m,' .
\ '%E%f:%l:%m,' .
\ '%C%\s%\+%m,' .