diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-12 17:31:56 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-12 17:31:56 +0200 |
commit | 6eb0c57e8070d641382c8844d35408a2f13cc751 (patch) | |
tree | 4ed16fc05df5e724c031c39d8c773998643a06be /compiler/exunit.vim | |
parent | 7d1b7e6f7123cd8b14f02221c7ec37d17d5d527e (diff) | |
download | vim-polyglot-6eb0c57e8070d641382c8844d35408a2f13cc751.tar.gz vim-polyglot-6eb0c57e8070d641382c8844d35408a2f13cc751.zip |
Add elixir language support
Diffstat (limited to 'compiler/exunit.vim')
-rw-r--r-- | compiler/exunit.vim | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/compiler/exunit.vim b/compiler/exunit.vim new file mode 100644 index 00000000..2c9fb299 --- /dev/null +++ b/compiler/exunit.vim @@ -0,0 +1,24 @@ +" 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: |