diff options
-rw-r--r-- | autoload/ale/engine.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/engine.vim b/autoload/ale/engine.vim index 803fd6dc..6815f395 100644 --- a/autoload/ale/engine.vim +++ b/autoload/ale/engine.vim @@ -333,7 +333,7 @@ function! s:CreateTemporaryFileForJob(buffer, temporary_file) abort " Automatically delete the directory later. call ale#engine#ManageDirectory(a:buffer, l:temporary_directory) " Write the buffer out to a file. - silent! exec 'write' a:temporary_file + call writefile(getbufline(a:buffer, 1, '$'), a:temporary_file) return 1 endfunction |