create session dir on demand

This commit is contained in:
Marco Hinz 2013-04-26 18:06:30 +02:00
parent 02647d4279
commit 3bcbf22de1

View file

@ -34,9 +34,19 @@ endfunction
function! startify#save_session(...) abort
if !isdirectory(g:startify_session_dir)
if exists('*mkdir')
echo 'The session directory does not exist: '. g:startify_session_dir .'. Create it? [y/n]' | redraw
if nr2char(getchar()) == 'y'
call mkdir(g:startify_session_dir, 'p')
else
echo
return
endif
else
echo 'The session directory does not exist: '. g:startify_session_dir
return
endif
endif
let spath = g:startify_session_dir . startify#get_sep() . (exists('a:1')
\ ? a:1
\ : input('Save under this session name: ', '', 'custom,startify#get_session_names_as_string'))