vim-sussify/autoload/startify.vim
2013-04-23 18:00:42 +02:00

35 lines
1 KiB
VimL

" Plugin: https://github.com/mhinz/vim-startify
" Description: Start screen displaying recently used stuff.
" Maintainer: Marco Hinz <http://github.com/mhinz>
" Version: 0.5
if exists('g:autoloaded_startify') || &cp
finish
endif
let g:autoloaded_startify = 1
function! startify#save_session(...) abort
let spath = g:startify_session_dir .'/'. (exists('a:1') ? a:1 : input('Save under this session name: ')) | redraw
if !filereadable(spath)
execute 'mksession '. spath | echo 'Session saved under: '. spath
return
endif
echo 'Session already exists. Overwrite? [y/n]' | redraw
if nr2char(getchar()) == 'y'
execute 'mksession! '. spath | echo 'Session saved under: '. spath
else
echo 'Did NOT save the session!'
endif
endfunction
function! startify#load_session(...) abort
let spath = g:startify_session_dir .'/'. (exists('a:1') ? a:1 : input('Load this session: ')) | redraw
if filereadable(spath)
execute 'source '. spath
else
echo 'No such file: '. spath
endif
endfunction
" vim: et sw=2 sts=2