create session dir on demand
This commit is contained in:
parent
02647d4279
commit
3bcbf22de1
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue