vim-sussify/autoload/startify.vim

49 lines
1.5 KiB
VimL
Raw Normal View History

2013-04-23 14:41:02 +00:00
" Plugin: https://github.com/mhinz/vim-startify
" Description: Start screen displaying recently used stuff.
" Maintainer: Marco Hinz <http://github.com/mhinz>
2013-04-24 09:31:53 +00:00
" Version: 1.0
2013-04-23 14:41:02 +00:00
if exists('g:autoloaded_startify') || &cp
finish
endif
let g:autoloaded_startify = 1
2013-04-24 13:01:43 +00:00
function! startify#get_session_names(lead, ...) abort
return map(split(globpath(g:startify_session_dir, '*'.a:lead.'*', '\n')), 'fnamemodify(v:val, ":t")')
endfunction
function! startify#get_session_names_as_string(lead, ...) abort
return join(map(split(globpath(g:startify_session_dir, '*'.a:lead.'*', '\n')), 'fnamemodify(v:val, ":t")'), "\n")
endfunction
2013-04-23 16:00:42 +00:00
function! startify#save_session(...) abort
2013-04-24 13:01:43 +00:00
let spath = g:startify_session_dir .'/'. (exists('a:1')
\ ? a:1
\ : input('Save under this session name: ', '', 'custom,startify#get_session_names_as_string'))
\ | redraw
2013-04-23 16:00:42 +00:00
if !filereadable(spath)
2013-04-23 14:41:02 +00:00
execute 'mksession '. spath | echo 'Session saved under: '. spath
2013-04-23 16:00:42 +00:00
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!'
2013-04-23 14:41:02 +00:00
endif
endfunction
2013-04-23 16:00:42 +00:00
function! startify#load_session(...) abort
2013-04-24 13:01:43 +00:00
let spath = g:startify_session_dir .'/'. (exists('a:1')
\ ? a:1
\ : input('Load this session: ', '', 'custom,startify#get_session_names_as_string'))
\ | redraw
2013-04-23 14:41:02 +00:00
if filereadable(spath)
execute 'source '. spath
else
2013-04-23 16:00:42 +00:00
echo 'No such file: '. spath
2013-04-23 14:41:02 +00:00
endif
endfunction
" vim: et sw=2 sts=2