Do no concatenate sname to spath prior empty check

This commit is contained in:
AkaiBureido 2013-05-29 15:51:18 -07:00 committed by Marco Hinz
parent 5579fa8644
commit efb79ebed9

View file

@ -155,18 +155,17 @@ function! startify#session_save(...) abort
return return
endif endif
endif endif
let spath = s:session_dir . startify#get_separator()
if exists('a:1') if exists('a:1')
let spath .= a:1 let sname = a:1
else else
let spath .= input('Save under this session name: ', fnamemodify(v:this_session, ':t'), 'custom,startify#session_list_as_string') let sname = input('Save under this session name: ', fnamemodify(v:this_session, ':t'), 'custom,startify#session_list_as_string')
redraw redraw
if empty(spath) if empty(sname)
echo 'You gave an empty name!' echo 'You gave an empty name!'
return return
endif endif
endif endif
let spath = s:escape(spath) let spath = s:escape(s:session_dir . startify#get_separator() . sname)
if !filereadable(spath) if !filereadable(spath)
execute 'mksession '. spath | echo 'Session saved under: '. spath execute 'mksession '. spath | echo 'Session saved under: '. spath
return return