check if session dir contains files

This commit is contained in:
Mike Anderson 2013-05-02 15:06:18 -05:00 committed by Marco Hinz
parent d671a0957c
commit b4b0dbae22

View file

@ -37,6 +37,10 @@ function! startify#delete_session(...) abort
echo 'The session directory does not exist: '. g:startify_session_dir
return
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')
\ ? a:1
\ : input('Delete this session: ', '', 'custom,startify#get_session_names_as_string'))