summaryrefslogtreecommitdiffstats
path: root/compiler/exunit.vim
blob: dfb0ea3c1f273ace79587515a52c300eb312dcef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'elixir') == -1
  
" Vim compiler file
" Language:     ExUnit
" Maintainer:   Rein Henrichs <rein.henrichs@gmail.com>
" URL:          https://github.com/elixir-lang/vim-elixir

if exists("current_compiler")
  finish
endif
let current_compiler = "exunit"

if exists(":CompilerSet") != 2    " older Vim always used :setlocal
  command -nargs=* CompilerSet setlocal <args>
endif

let s:cpo_save = &cpo
set cpo-=C

CompilerSet makeprg=mix\ test
CompilerSet errorformat=%A\ \ %.)\ %m(%.%#),%C\ \ \ \ \ **%m,%C\ \ \ \ \ \ \ %m,%Z\ \ \ \ \ at\ %f:%l,%-G%.%#

let &cpo = s:cpo_save
unlet s:cpo_save

" vim: nowrap sw=2 sts=2 ts=8:

endif