Sessions: only prune unlisted buffers from arglist

References #110.
This commit is contained in:
Marco Hinz 2014-09-21 14:08:40 +02:00
parent 6616caa341
commit af2368cd75

View file

@ -234,7 +234,11 @@ function! startify#session_write(spath)
unlet s:callingbuffer unlet s:callingbuffer
endif endif
" prevent saving already deleted buffers that were in the arglist " prevent saving already deleted buffers that were in the arglist
silent! argdelete * for arg in argv()
if !buflisted(arg)
execute 'argdelete' fnameescape(arg)
endif
endfor
set sessionoptions-=options set sessionoptions-=options
execute 'mksession!' a:spath execute 'mksession!' a:spath
catch catch