Allow spaces in session names
This commit is contained in:
parent
b7175c0456
commit
ab48a7b26c
|
@ -92,6 +92,7 @@ function! startify#save_session(...) abort
|
||||||
\ ? a:1
|
\ ? a:1
|
||||||
\ : input('Save under this session name: ', '', 'custom,startify#get_session_names_as_string'))
|
\ : input('Save under this session name: ', '', 'custom,startify#get_session_names_as_string'))
|
||||||
\ | redraw
|
\ | redraw
|
||||||
|
let spath = startify#escape(spath)
|
||||||
if !filereadable(spath)
|
if !filereadable(spath)
|
||||||
execute 'mksession '. spath | echo 'Session saved under: '. spath
|
execute 'mksession '. spath | echo 'Session saved under: '. spath
|
||||||
return
|
return
|
||||||
|
@ -118,7 +119,7 @@ function! startify#load_session(...) abort
|
||||||
\ : input('Load this session: ', '', 'custom,startify#get_session_names_as_string'))
|
\ : input('Load this session: ', '', 'custom,startify#get_session_names_as_string'))
|
||||||
\ | redraw
|
\ | redraw
|
||||||
if filereadable(spath)
|
if filereadable(spath)
|
||||||
execute 'source '. spath
|
execute 'source '. startify#escape(spath)
|
||||||
else
|
else
|
||||||
echo 'No such file: '. spath
|
echo 'No such file: '. spath
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue