WIP: Data breakpoints (though can't find a server which supports them)
This commit is contained in:
parent
32360236ff
commit
c2353b388d
5 changed files with 108 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue