SSave: use correct variable
This commit is contained in:
parent
ab8c15eb4c
commit
453e4e56b4
|
@ -155,13 +155,14 @@ 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 = s:session_dir . startify#get_separator() . a:1
|
let spath .= a:1
|
||||||
else
|
else
|
||||||
let i = input('Save under this session name: ', fnamemodify(v:this_session, ':t'), 'custom,startify#session_list_as_string')
|
let spath .= input('Save under this session name: ', fnamemodify(v:this_session, ':t'), 'custom,startify#session_list_as_string')
|
||||||
redraw
|
redraw
|
||||||
if empty(i)
|
if empty(spath)
|
||||||
echo 'You gave an invalid name!'
|
echo 'You gave an empty name!'
|
||||||
return
|
return
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue