1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-16 12:15:46 +08:00
2021-10-24 16:25:43 +08:00

14 lines
314 B
VimL

function! chat#startServer(name) abort
endfunction
function! chat#openWin(...) abort
if a:0 == 0
call chat#chatting#OpenMsgWin()
else
if !empty(globpath(&rtp,'autoload/chat/' . a:1 .'.vim'))
call call('chat#' . a:1 . '#OpenMsgWin', [])
endif
endif
endfunction