1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 05:30:07 +08:00

Fix win project manager

This commit is contained in:
wsdjeg 2017-12-27 09:00:03 +08:00
parent 03c1d7ad61
commit 55bd243a0c

View File

@ -21,7 +21,7 @@ function! s:cache_project(prj) abort
if !has_key(s:project_paths, a:prj.path)
let s:project_paths[a:prj.path] = a:prj
let desc = '[' . a:prj.name . '] ' . a:prj.path
let cmd = 'call SpaceVim#plugins#projectmanager#open("' . a:prj.path . '")'
let cmd = "call SpaceVim#plugins#projectmanager#open('" . a:prj.path . "')"
call add(g:unite_source_menu_menus.Projects.command_candidates, [desc,cmd])
endif
endfunction