parent
4e9b9a2f31
commit
37d6f0137b
|
@ -165,14 +165,14 @@ function! startify#session_save(...) abort
|
||||||
return
|
return
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
let spath = s:escape(s:session_dir . startify#get_separator() . sname)
|
let spath = s:session_dir . startify#get_separator() . sname
|
||||||
if !filereadable(spath)
|
if !filereadable(spath)
|
||||||
execute 'mksession '. spath | echo 'Session saved under: '. spath
|
execute 'mksession '. s:escape(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! '. spath | echo 'Session saved under: '. spath
|
execute 'mksession! '. s:escape(spath) | echo 'Session saved under: '. spath
|
||||||
else
|
else
|
||||||
echo 'Did NOT save the session!'
|
echo 'Did NOT save the session!'
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue