1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-17 04:35:41 +08:00
2021-10-24 16:25:43 +08:00

10 lines
220 B
VimL

let s:debug_func = {}
function! chat#debug#defind(key, value) abort
call extend(s:debug_func, {a:key : a:value})
endfunction
function! chat#debug#getLog(key) abort
call call(s:debug_func[a:key],[])
endfunction