Do not give already escaped path to filereadable()

References #22.
This commit is contained in:
Marco Hinz 2013-05-30 11:34:15 +02:00
parent 4e9b9a2f31
commit 37d6f0137b

View file

@ -165,14 +165,14 @@ function! startify#session_save(...) abort
return
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)
execute 'mksession '. spath | echo 'Session saved under: '. spath
execute 'mksession '. s:escape(spath) | echo 'Session saved under: '. spath
return
endif
echo 'Session already exists. Overwrite? [y/n]' | redraw
if nr2char(getchar()) == 'y'
execute 'mksession! '. spath | echo 'Session saved under: '. spath
execute 'mksession! '. s:escape(spath) | echo 'Session saved under: '. spath
else
echo 'Did NOT save the session!'
endif