use mix for elixir
This commit is contained in:
parent
182b3f01c0
commit
a5024b1176
@ -14,12 +14,22 @@ if exists("g:loaded_syntastic_elixir_elixir_checker")
|
||||
endif
|
||||
let g:loaded_syntastic_elixir_elixir_checker=1
|
||||
|
||||
let s:syntastic_elixir_compile_command = 'elixir'
|
||||
|
||||
if filereadable("mix.exs")
|
||||
let s:syntastic_elixir_compile_command = "mix compile"
|
||||
endif
|
||||
|
||||
function! SyntaxCheckers_elixir_elixir_IsAvailable()
|
||||
if s:syntastic_elixir_compile_command == 'elixir'
|
||||
return executable('elixir')
|
||||
else
|
||||
return executable('mix')
|
||||
endif
|
||||
endfunction
|
||||
|
||||
function! SyntaxCheckers_elixir_elixir_GetLocList()
|
||||
let makeprg = syntastic#makeprg#build({ 'exe': 'elixir' })
|
||||
let makeprg = syntastic#makeprg#build({ 'exe': s:syntastic_elixir_compile_command })
|
||||
let errorformat = '** %*[^\ ] %f:%l: %m'
|
||||
|
||||
let elixir_results = SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat })
|
||||
|
Loading…
Reference in New Issue
Block a user