mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-09 22:14:44 +08:00
Use writefile() for temporary files, which works better
This commit is contained in:
@@ -333,7 +333,7 @@ function! s:CreateTemporaryFileForJob(buffer, temporary_file) abort
|
|||||||
" Automatically delete the directory later.
|
" Automatically delete the directory later.
|
||||||
call ale#engine#ManageDirectory(a:buffer, l:temporary_directory)
|
call ale#engine#ManageDirectory(a:buffer, l:temporary_directory)
|
||||||
" Write the buffer out to a file.
|
" Write the buffer out to a file.
|
||||||
silent! exec 'write' a:temporary_file
|
call writefile(getbufline(a:buffer, 1, '$'), a:temporary_file)
|
||||||
|
|
||||||
return 1
|
return 1
|
||||||
endfunction
|
endfunction
|
||||||
|
|||||||
Reference in New Issue
Block a user