Sessions: don't save options
sessionoptions=options is a source of many problems. Startify disables it temporarily. References #49.
This commit is contained in:
parent
d879f39a5d
commit
eacd402a52
|
@ -520,7 +520,15 @@ endfunction
|
||||||
|
|
||||||
" Function: s:session_write {{{1
|
" Function: s:session_write {{{1
|
||||||
function! s:session_write(spath)
|
function! s:session_write(spath)
|
||||||
execute 'mksession!' a:spath
|
let ssop = &sessionoptions
|
||||||
|
try
|
||||||
|
set sessionoptions-=options
|
||||||
|
execute 'mksession!' a:spath
|
||||||
|
catch
|
||||||
|
execute 'echoerr' string(v:exception)
|
||||||
|
finally
|
||||||
|
let &sessionoptions = ssop
|
||||||
|
endtry
|
||||||
|
|
||||||
if exists('g:startify_session_savevars') || exists('g:startify_session_savecmds')
|
if exists('g:startify_session_savevars') || exists('g:startify_session_savecmds')
|
||||||
execute 'split' a:spath
|
execute 'split' a:spath
|
||||||
|
|
Loading…
Reference in a new issue