Skip to content

Instantly share code, notes, and snippets.

@sanmiguel
Created January 18, 2016 20:55
Show Gist options
  • Save sanmiguel/712f9273150e2abae6bc to your computer and use it in GitHub Desktop.
Save sanmiguel/712f9273150e2abae6bc to your computer and use it in GitHub Desktop.
neomake rules for mix test
let g:neomake_elixir_mix_maker = {
\ 'args': ['compile'],
\ 'errorformat':
\ '** %s %f:%l: %m,' .
\ '%f:%l: warning: %m'
\ }
let g:neomake_elixir_test_maker = {
\ 'exe': 'mix',
\ 'args': ['test'],
\ 'errorformat':
\ '%Z %f:%l,' .
\ '%C ** %m,' .
\ '%C %[%^:]%#:%.%#,' .
\ '%C %m,' .
\ '%E %n)%.%#'
\ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment