From ab48a7b26c24a866fd98113e43b44df22fe61811 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Sat, 11 May 2013 16:37:53 +0200 Subject: [PATCH] Allow spaces in session names --- autoload/startify.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index e8b789f..3496e80 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -92,6 +92,7 @@ function! startify#save_session(...) abort \ ? a:1 \ : input('Save under this session name: ', '', 'custom,startify#get_session_names_as_string')) \ | redraw + let spath = startify#escape(spath) if !filereadable(spath) execute 'mksession '. spath | echo 'Session saved under: '. spath return @@ -118,7 +119,7 @@ function! startify#load_session(...) abort \ : input('Load this session: ', '', 'custom,startify#get_session_names_as_string')) \ | redraw if filereadable(spath) - execute 'source '. spath + execute 'source '. startify#escape(spath) else echo 'No such file: '. spath endif