parent
a58f92e781
commit
7f76635fce
|
@ -235,27 +235,31 @@ endfunction
|
||||||
|
|
||||||
" Function: #session_write {{{1
|
" Function: #session_write {{{1
|
||||||
function! startify#session_write(spath)
|
function! startify#session_write(spath)
|
||||||
let ssop = &sessionoptions
|
" if this function is called while being in the Startify buffer
|
||||||
try
|
" (by loading another session or running :SSave/:SLoad directly)
|
||||||
" if this function is called while being in the Startify buffer
|
" switch back to the previous buffer before saving the session
|
||||||
" (by loading another session or running :SSave/:SLoad directly)
|
if &filetype == 'startify'
|
||||||
" switch back to the previous buffer before saving the session
|
let callingbuffer = bufnr('#')
|
||||||
if &filetype == 'startify'
|
if callingbuffer > 0
|
||||||
let callingbuffer = bufnr('#')
|
execute 'buffer' callingbuffer
|
||||||
if callingbuffer > 0
|
|
||||||
execute 'buffer' callingbuffer
|
|
||||||
endif
|
|
||||||
endif
|
endif
|
||||||
" prevent saving already deleted buffers that were in the arglist
|
endif
|
||||||
for arg in argv()
|
" prevent saving already deleted buffers that were in the arglist
|
||||||
if !buflisted(arg)
|
for arg in argv()
|
||||||
execute 'argdelete' fnameescape(arg)
|
if !buflisted(arg)
|
||||||
endif
|
execute 'silent! argdelete' fnameescape(arg)
|
||||||
endfor
|
endif
|
||||||
set sessionoptions-=options
|
endfor
|
||||||
|
|
||||||
|
let ssop = &sessionoptions
|
||||||
|
set sessionoptions-=options
|
||||||
|
try
|
||||||
execute 'mksession!' a:spath
|
execute 'mksession!' a:spath
|
||||||
catch
|
catch
|
||||||
execute 'echoerr' string(v:exception)
|
echohl ErrorMsg
|
||||||
|
echomsg v:exception
|
||||||
|
echohl NONE
|
||||||
|
return
|
||||||
finally
|
finally
|
||||||
let &sessionoptions = ssop
|
let &sessionoptions = ssop
|
||||||
endtry
|
endtry
|
||||||
|
|
Loading…
Reference in a new issue