handle spaces in paths

Closes #12.
This commit is contained in:
Marco Hinz 2013-04-28 00:52:41 +02:00
parent 05edf67f05
commit 12d0ca643b

View file

@ -17,7 +17,7 @@ function! startify#get_session_names_as_string(lead, ...) abort
endfunction endfunction
function! startify#escape(path) abort 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 endfunction
function! startify#get_sep() abort function! startify#get_sep() abort