Use tempname() to create the temporary output file

Also, "manage" this filename so ALE can clean it up.
This commit is contained in:
Jon Parise 2017-03-11 19:33:32 -08:00
parent 7d6b313065
commit f3eab445ee

View File

@ -3,8 +3,9 @@
let g:ale_erlang_erlc_options = get(g:, 'ale_erlang_erlc_options', '')
function! ale_linters#erlang#erlc#GetCommand(buffer) abort
let l:temp_dir = has('win32') ? $TMP : $TMPDIR
return 'erlc -o ' . l:temp_dir . ' ' . g:ale_erlang_erlc_options . ' %t'
let l:output_file = tempname()
call ale#engine#ManageFile(a:buffer, l:output_file)
return 'erlc -o ' . fnameescape(l:output_file) . ' ' . g:ale_erlang_erlc_options . ' %t'
endfunction
function! ale_linters#erlang#erlc#Handle(buffer, lines) abort