2015-07-18 17:05:45 -04:00
|
|
|
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'elixir') == -1
|
|
|
|
|
2013-09-12 11:31:56 -04:00
|
|
|
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
|
2015-12-17 04:44:58 -05:00
|
|
|
CompilerSet errorformat=
|
|
|
|
\%E\ \ %n)\ %m,
|
|
|
|
\%+G\ \ \ \ \ **\ %m,
|
|
|
|
\%+G\ \ \ \ \ stacktrace:,
|
|
|
|
\%C\ \ \ \ \ %f:%l,
|
|
|
|
\%+G\ \ \ \ \ \ \ (%\\w%\\+)\ %f:%l:\ %m,
|
|
|
|
\%+G\ \ \ \ \ \ \ %f:%l:\ %.%#,
|
|
|
|
\**\ (%\\w%\\+)\ %f:%l:\ %m
|
2013-09-12 11:31:56 -04:00
|
|
|
|
|
|
|
let &cpo = s:cpo_save
|
|
|
|
unlet s:cpo_save
|
|
|
|
|
|
|
|
" vim: nowrap sw=2 sts=2 ts=8:
|
2015-07-18 17:05:45 -04:00
|
|
|
|
|
|
|
endif
|