From 37d6f0137b7596cdd19a6f830e3b62eca37939f0 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Thu, 30 May 2013 11:34:15 +0200 Subject: [PATCH] Do not give already escaped path to filereadable() References #22. --- autoload/startify.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index b40d58a..154eb31 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -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