:SL without argument loads last session on Unix

References #181.
This commit is contained in:
Marco Hinz 2015-11-14 02:18:03 +01:00
parent 1f7b1ab4dc
commit 80384d9c05
2 changed files with 48 additions and 18 deletions

View file

@ -159,20 +159,31 @@ function! startify#session_load(...) abort
echomsg 'There are no sessions...' echomsg 'There are no sessions...'
return return
endif endif
call inputsave()
let spath = s:session_dir . s:sep . (exists('a:1') let spath = s:session_dir . s:sep
\ ? a:1
\ : input('Load this session: ', fnamemodify(v:this_session, ':t'), 'custom,startify#session_list_as_string')) if a:0
\ | redraw let spath .= a:1
call inputrestore() else
if has('win32')
call inputsave()
let spath .= input(
\ 'Load this session: ',
\ fnamemodify(v:this_session, ':t'),
\ 'custom,startify#session_list_as_string') | redraw
call inputrestore()
else
let spath .= '__LAST__'
endif
endif
if filereadable(spath) if filereadable(spath)
if get(g:, 'startify_session_persistence') if get(g:, 'startify_session_persistence') && filewritable(v:this_session)
\ && exists('v:this_session')
\ && filewritable(v:this_session)
call startify#session_write(fnameescape(v:this_session)) call startify#session_write(fnameescape(v:this_session))
endif endif
call startify#session_delete_buffers() call startify#session_delete_buffers()
execute 'source '. fnameescape(spath) execute 'source '. fnameescape(spath)
call s:create_last_session_link(spath)
else else
echo 'No such file: '. spath echo 'No such file: '. spath
endif endif
@ -290,6 +301,8 @@ function! startify#session_write(spath)
silent update silent update
silent hide silent hide
endif endif
call s:create_last_session_link(a:spath)
endfunction endfunction
" Function: #session_delete {{{1 " Function: #session_delete {{{1
@ -337,12 +350,12 @@ endfunction
" Function: #session_list {{{1 " Function: #session_list {{{1
function! startify#session_list(lead, ...) abort function! startify#session_list(lead, ...) abort
return map(split(globpath(s:session_dir, '*'.a:lead.'*'), '\n'), 'fnamemodify(v:val, ":t")') return filter(map(split(globpath(s:session_dir, '*'.a:lead.'*'), '\n'), 'fnamemodify(v:val, ":t")'), 'v:val !=# "__LAST__"')
endfunction endfunction
" Function: #session_list_as_string {{{1 " Function: #session_list_as_string {{{1
function! startify#session_list_as_string(lead, ...) abort function! startify#session_list_as_string(lead, ...) abort
return join(map(split(globpath(s:session_dir, '*'.a:lead.'*'), '\n'), 'fnamemodify(v:val, ":t")'), "\n") return join(filter(map(split(globpath(s:session_dir, '*'.a:lead.'*'), '\n'), 'fnamemodify(v:val, ":t")'), 'v:val !=# "__LAST__"'), "\n")
endfunction endfunction
" Function: #debug {{{1 " Function: #debug {{{1
@ -500,7 +513,8 @@ endfunction
" Function: s:show_sessions {{{1 " Function: s:show_sessions {{{1
function! s:show_sessions() abort function! s:show_sessions() abort
let sfiles = filter(split(globpath(s:session_dir, '*'), '\n'), 'v:val !~# "x\.vim$"') let sfiles = filter(split(globpath(s:session_dir, '*'), '\n'),
\ 'v:val !~# "x\.vim$" && v:val !~# "__LAST__$"')
if empty(sfiles) if empty(sfiles)
if exists('s:last_message') if exists('s:last_message')
unlet s:last_message unlet s:last_message
@ -738,3 +752,16 @@ function! s:register(line, index, type, cmd, path, ...)
\ 'nowait': a:0 ? '<nowait>' : '', \ 'nowait': a:0 ? '<nowait>' : '',
\ } \ }
endfunction endfunction
" Function: s:create_last_session_link {{{1
function! s:create_last_session_link(spath)
if !has('win32') && a:spath !~# '__LAST__$'
call system('cd '. shellescape(s:session_dir)
\ .' && ln -sf '. shellescape(fnamemodify(a:spath, ':t')) .' __LAST__')
if v:shell_error
echohl WarningMsg
echomsg "startify: Can't create 'last used session' symlink."
echohl NONE
endif
endif
endfunction

View file

@ -475,13 +475,16 @@ user autocmd is issued. You can hook into it like this:
============================================================================== ==============================================================================
COMMANDS *startify-commands* COMMANDS *startify-commands*
> >
:SLoad :SSave [session]
:SSave :SDelete [session]
:SDelete
< <
Commands to load, save or delete a session. These take either 0 or 1 argument. Save or delete a session. If you don't specify a session name, it will prompt
If you don't specify the session name as an argument, they will just ask for you for one.
it. >
:SLoad [session]
<
Load a session. If you don't specify a session name, it will either prompt you
for one (Windows) or load the last used session (Unix).
Providing only a part of the session name works too, if you complete the Providing only a part of the session name works too, if you complete the
argument with either <c-d> or <tab> afterwards. argument with either <c-d> or <tab> afterwards.