Make persistence work with normal sessions

This commit is contained in:
Marco Hinz 2014-06-11 12:14:21 +02:00
parent a4eef8c086
commit 19da8f9ee8
3 changed files with 40 additions and 37 deletions

View file

@ -37,14 +37,6 @@ endif
let s:secoff = type(s:lists[0]) == 3 ? (len(s:lists[0]) + 1) : 0 let s:secoff = type(s:lists[0]) == 3 ? (len(s:lists[0]) + 1) : 0
let s:section_header_lines = [] let s:section_header_lines = []
" Init: autocmds {{{1
if get(g:, 'startify_session_persistence')
autocmd startify VimLeave *
\ if exists('v:this_session') && filewritable(v:this_session) |
\ call s:session_write(fnameescape(v:this_session)) |
\ endif
endif
" Function: #get_separator {{{1 " Function: #get_separator {{{1
function! startify#get_separator() abort function! startify#get_separator() abort
return !exists('+shellslash') || &shellslash ? '/' : '\' return !exists('+shellslash') || &shellslash ? '/' : '\'
@ -197,20 +189,47 @@ function! startify#session_save(...) abort
let spath = s:session_dir . s:sep . sname let spath = s:session_dir . s:sep . sname
if !filereadable(spath) if !filereadable(spath)
call s:session_write(fnameescape(spath)) call startify#session_write(fnameescape(spath))
echo 'Session saved under: '. spath echo 'Session saved under: '. spath
return return
endif endif
echo 'Session already exists. Overwrite? [y/n]' | redraw echo 'Session already exists. Overwrite? [y/n]' | redraw
if nr2char(getchar()) == 'y' if nr2char(getchar()) == 'y'
call s:session_write(fnameescape(spath)) call startify#session_write(fnameescape(spath))
echo 'Session saved under: '. spath echo 'Session saved under: '. spath
else else
echo 'Did NOT save the session!' echo 'Did NOT save the session!'
endif endif
endfunction endfunction
" Function: #session_write {{{1
function! startify#session_write(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')
execute 'split' a:spath
" put existing variables from savevars into session file
call append(line('$')-3, map(filter(get(g:, 'startify_session_savevars', []), 'exists(v:val)'), '"let ". v:val ." = ". strtrans(string(eval(v:val)))'))
" put commands from savecmds into session file
call append(line('$')-3, get(g:, 'startify_session_savecmds', []))
setlocal bufhidden=delete
silent update
silent hide
endif
endfunction
" Function: #session_delete {{{1 " Function: #session_delete {{{1
function! startify#session_delete(...) abort function! startify#session_delete(...) abort
if !isdirectory(s:session_dir) if !isdirectory(s:session_dir)
@ -599,33 +618,6 @@ function! s:restore_position() abort
endif endif
endfunction endfunction
" Function: s:session_write {{{1
function! s:session_write(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')
execute 'split' a:spath
" put existing variables from savevars into session file
call append(line('$')-3, map(filter(get(g:, 'startify_session_savevars', []), 'exists(v:val)'), '"let ". v:val ." = ". strtrans(string(eval(v:val)))'))
" put commands from savecmds into session file
call append(line('$')-3, get(g:, 'startify_session_savecmds', []))
setlocal bufhidden=delete
silent update
silent hide
endif
endfunction
" Function: s:print_section_header {{{1 " Function: s:print_section_header {{{1
function! s:print_section_header() abort function! s:print_section_header() abort
$ $

View file

@ -215,6 +215,10 @@ Great way to create a portable project folder.
< <
Automatically update sessions before exiting Vim. Automatically update sessions before exiting Vim.
This also works for sessions started with:
>
vim -S mysession.vim
<
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
*g:startify_session_delete_buffers* *g:startify_session_delete_buffers*
> >

View file

@ -18,6 +18,13 @@ augroup startify
\ endif | \ endif |
\ autocmd! startify VimEnter \ autocmd! startify VimEnter
endif endif
if get(g:, 'startify_session_persistence')
autocmd startify VimLeave *
\ if exists('v:this_session') && filewritable(v:this_session) |
\ call startify#session_write(fnameescape(v:this_session)) |
\ endif
endif
augroup END augroup END
command! -nargs=? -bar -complete=customlist,startify#session_list SSave call startify#session_save(<f-args>) command! -nargs=? -bar -complete=customlist,startify#session_list SSave call startify#session_save(<f-args>)