WIP: Data breakpoints (though can't find a server which supports them)

This commit is contained in:
Ben Jackson 2021-03-05 21:10:08 +00:00
commit c2353b388d
5 changed files with 108 additions and 0 deletions

View file

@ -220,6 +220,14 @@ function! vimspector#SetVariableValue( ... ) abort
endif
endfunction
function! vimspector#AddDataBreakpoint( ... ) abort
if !s:Enabled()
return
endif
" TODO: how to set options?
py3 _vimspector_session.AddDataBreakpoint( {} )
endfunction
function! vimspector#DeleteWatch() abort
if !s:Enabled()
return