Fix autosave for non-file buffers

This commit is contained in:
Talia 2020-08-19 17:35:34 +02:00
parent 01624e0c71
commit a7c32a1167

View file

@ -1,11 +1,9 @@
" Extend autosavefeature :) " Extend autosavefeature :)
function! TryAutosave() function! TryAutosave()
if &autowriteall if &autowriteall && &mod && &buftype==""
if &mod silent write
silent write
redraw redraw
end
end end
endfunction endfunction