fix test's and delete unused code

This commit is contained in:
Carlos Ramos 2017-10-22 09:22:16 -04:00
parent 43653ef548
commit 3212278c91
4 changed files with 21 additions and 23 deletions

View file

@ -9,8 +9,7 @@ endfunction
function! ale#fixers#mix_format#Fix(buffer) abort
return {
\ 'command': ale#handlers#elixir#GetExecutable(a:buffer)
\ . ale#fixers#mix_format#GetExecutable(a:buffer)
\ 'command': ale#Escape(ale#fixers#mix_format#GetExecutable(a:buffer))
\ . ' format %t',
\ 'read_temporary_file': 1,
\}

View file

@ -1,5 +0,0 @@
call ale#Set('elixir_executable', '')
function! ale#handlers#elixir#GetExecutable(buffer) abort
return ale#Var(a:buffer, 'elixir_executable')
endfunction