Allow setting the current thread, use a sign to highlight the line with the current thread

This commit is contained in:
Ben Jackson 2020-11-21 14:34:56 +00:00
commit 53b1d12447
6 changed files with 110 additions and 50 deletions

View file

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