SSave: fix warning message

This commit is contained in:
Marco Hinz 2013-08-13 14:19:51 +02:00
parent 23173c7d6b
commit 0354319801

View file

@ -3,7 +3,7 @@
" Maintainer: Marco Hinz <http://github.com/mhinz> " Maintainer: Marco Hinz <http://github.com/mhinz>
" Version: 1.7 " Version: 1.7
if exists('g:autoloaded_startify') || &cp if exists('g:autoloaded_startify') || &compatible
finish finish
endif endif
let g:autoloaded_startify = 1 let g:autoloaded_startify = 1
@ -124,7 +124,7 @@ endfunction
function! startify#session_save(...) abort function! startify#session_save(...) abort
if !isdirectory(s:session_dir) if !isdirectory(s:session_dir)
if exists('*mkdir') if exists('*mkdir')
echo 'The session directory does not exist: '. s:session_dir .'. Create it? [y/n]' | redraw echo 'The session directory does not exist: '. s:session_dir .'. Create it? [y/n]'
if (nr2char(getchar()) == 'y') if (nr2char(getchar()) == 'y')
call mkdir(s:session_dir, 'p') call mkdir(s:session_dir, 'p')
else else
@ -136,6 +136,7 @@ function! startify#session_save(...) abort
return return
endif endif
endif endif
if exists('a:1') if exists('a:1')
let sname = a:1 let sname = a:1
else else
@ -146,11 +147,13 @@ function! startify#session_save(...) abort
return return
endif endif
endif endif
let spath = s:session_dir . s:sep . sname let spath = s:session_dir . s:sep . sname
if !filereadable(spath) if !filereadable(spath)
execute 'mksession '. fnameescape(spath) | echo 'Session saved under: '. spath execute 'mksession '. fnameescape(spath) | echo 'Session saved under: '. spath
return return
endif endif
echo 'Session already exists. Overwrite? [y/n]' | redraw echo 'Session already exists. Overwrite? [y/n]' | redraw
if nr2char(getchar()) == 'y' if nr2char(getchar()) == 'y'
execute 'mksession! '. fnameescape(spath) | echo 'Session saved under: '. spath execute 'mksession! '. fnameescape(spath) | echo 'Session saved under: '. spath
@ -168,10 +171,12 @@ function! startify#session_delete(...) abort
echo 'There are no sessions...' echo 'There are no sessions...'
return return
endif endif
let spath = s:session_dir . s:sep . (exists('a:1') let spath = s:session_dir . s:sep . (exists('a:1')
\ ? a:1 \ ? a:1
\ : input('Delete this session: ', fnamemodify(v:this_session, ':t'), 'custom,startify#session_list_as_string')) \ : input('Delete this session: ', fnamemodify(v:this_session, ':t'), 'custom,startify#session_list_as_string'))
\ | redraw \ | redraw
echo 'Really delete '. spath .'? [y/n]' | redraw echo 'Really delete '. spath .'? [y/n]' | redraw
if (nr2char(getchar()) == 'y') if (nr2char(getchar()) == 'y')
if delete(spath) == 0 if delete(spath) == 0