Allow pausing individual threads (in theory)

This commit is contained in:
Ben Jackson 2020-11-20 23:18:20 +00:00
commit f0785c11f2
3 changed files with 41 additions and 1 deletions

View file

@ -171,6 +171,13 @@ function! vimspector#Pause() abort
py3 _vimspector_session.Pause()
endfunction
function! vimspector#PauseThread() abort
if !s:Enabled()
return
endif
py3 _vimspector_session.PauseThread()
endfunction
function! vimspector#Stop() abort
if !s:Enabled()
return