check if session dir contains files
This commit is contained in:
parent
d671a0957c
commit
b4b0dbae22
|
@ -37,6 +37,10 @@ function! startify#delete_session(...) abort
|
||||||
echo 'The session directory does not exist: '. g:startify_session_dir
|
echo 'The session directory does not exist: '. g:startify_session_dir
|
||||||
return
|
return
|
||||||
endif
|
endif
|
||||||
|
if strlen(startify#get_session_names_as_string('')) == 0
|
||||||
|
echo 'There are no sessions...'
|
||||||
|
return
|
||||||
|
endif
|
||||||
let spath = g:startify_session_dir . startify#get_separator() . (exists('a:1')
|
let spath = g:startify_session_dir . startify#get_separator() . (exists('a:1')
|
||||||
\ ? a:1
|
\ ? a:1
|
||||||
\ : input('Delete this session: ', '', 'custom,startify#get_session_names_as_string'))
|
\ : input('Delete this session: ', '', 'custom,startify#get_session_names_as_string'))
|
||||||
|
|
Loading…
Reference in a new issue