瀏覽代碼

handle spaces in paths

Closes #12.
Marco Hinz 12 年之前
父節點
當前提交
12d0ca643b
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      autoload/startify.vim

+ 1 - 1
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