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,8 +34,18 @@ endfunction
function! startify#save_session(...) abort function! startify#save_session(...) abort
if !isdirectory(g:startify_session_dir) if !isdirectory(g:startify_session_dir)
echo 'The session directory does not exist: '. g:startify_session_dir if exists('*mkdir')
return 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 endif
let spath = g:startify_session_dir . startify#get_sep() . (exists('a:1') let spath = g:startify_session_dir . startify#get_sep() . (exists('a:1')
\ ? a:1 \ ? a:1