mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 05:30:07 +08:00
14 lines
427 B
VimL
14 lines
427 B
VimL
|
let s:debug_message = []
|
||
|
function! zvim#debug#completion_debug(ArgLead, CmdLine, CursorPos) abort
|
||
|
call add(s:debug_message, "arglead:[".a:ArgLead ."] cmdline:[" .a:CmdLine ."] cursorpos:[" .a:CursorPos ."]")
|
||
|
endfunction
|
||
|
|
||
|
function! zvim#debug#get_message() abort
|
||
|
return join(s:debug_message, "\n")
|
||
|
endfunction
|
||
|
|
||
|
function! zvim#debug#clean_message() abort
|
||
|
let s:debug_message = []
|
||
|
return s:debug_message
|
||
|
endfunction
|