Skip to content

Commit

Permalink
support column number in go syntax checker
Browse files Browse the repository at this point in the history
  • Loading branch information
kisielk committed Apr 1, 2012
1 parent 3cac7f3 commit 315e1ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion syntax_checkers/go/go.vim
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"============================================================================ "============================================================================
function! SyntaxCheckers_go_GetLocList() function! SyntaxCheckers_go_GetLocList()
let makeprg = 'go build -o /dev/null %' let makeprg = 'go build -o /dev/null %'
let errorformat = '%E%f:%l: %m,%-G#%.%#' let errorformat = '%f:%l:%c:%m,%f:%l%m,%-G#%.%#'


return SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat }) return SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat })
endfunction endfunction

0 comments on commit 315e1ad

Please sign in to comment.