From 12d0ca643b8aad753d193e9bffd1417f266be9cd Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Sun, 28 Apr 2013 00:52:41 +0200 Subject: [PATCH] handle spaces in paths Closes #12. --- autoload/startify.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 698fe67..6ec4b2e 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -17,7 +17,7 @@ function! startify#get_session_names_as_string(lead, ...) abort endfunction function! startify#escape(path) abort - return !exists('+shellslash') || &shellslash ? a:path : escape(a:path, '\') + return !exists('+shellslash') || &shellslash ? fnameescape(a:path) : escape(a:path, '\') endfunction function! startify#get_sep() abort