mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-16 20:25:41 +08:00
14 lines
314 B
VimL
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
|