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

Add autocompletion of SpaceVim, Fix #424

This commit is contained in:
wsdjeg 2017-04-11 22:08:19 +08:00
parent bd3229b68d
commit 9221a22121

View File

@ -44,7 +44,7 @@ endfunction
" @vimlint(EVL103, 1, a:CmdLine)
" @vimlint(EVL103, 1, a:CursorPos)
function! SpaceVim#commands#complete_plugin(ArgLead, CmdLine, CursorPos) abort
return join(keys(dein#get()), "\n")
return join(keys(dein#get()) + ['SpaceVim'], "\n")
endfunction
" @vimlint(EVL103, 0, a:ArgLead)
" @vimlint(EVL103, 0, a:CmdLine)