summaryrefslogtreecommitdiff
path: root/mut/neovim/compiler/go-test.vim
blob: 61442e51497678f2bdb4190a012f6983e04b439d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
if exists('current_compiler')
  finish
endif
let current_compiler = 'go-test'

if exists(':CompilerSet') != 2
  command -nargs=* CompilerSet setlocal <args>
endif

" %f>%l:%c:%t:%n:%m
CompilerSet makeprg=go\ test
CompilerSet errorformat=%.%#:\ %m\ %f:%l,%.%#:\ %m\ at\ %f:%l%.%#,

" vim: sw=2 sts=2 et