Allow setting the current thread, use a sign to highlight the line with the current thread
This commit is contained in:
parent
8e3a734141
commit
53b1d12447
6 changed files with 110 additions and 50 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue