1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 09:20:04 +08:00

Fix SPC p k

This commit is contained in:
wsdjeg 2017-12-17 21:18:24 +08:00
parent 7468d6ec12
commit 34a8e22936

View File

@ -61,7 +61,7 @@ function! SpaceVim#plugins#projectmanager#kill_project() abort
\ 'expr' : [
\ 'buflisted(v:val)',
\ 'index(tabpagebuflist(), v:val) == -1',
\ 'getbufvar(v:val, "_spacevim_project_name") == ' . name,
\ 'getbufvar(v:val, "_spacevim_project_name") == "' . name . '"',
\ ],
\ 'do' : 'bd %d'
\ }