Be more forceful when closing th ejob

This commit is contained in:
Ben Jackson 2019-02-21 16:13:51 +00:00
commit 2d7c67968a

View file

@ -96,7 +96,8 @@ function! vimspector#internal#job#StopDebugSession() abort
endif
if job_status( s:job ) == 'run'
call job_stop( s:job, 'term' )
echom "Terminating job"
call job_stop( s:job, 'kill' )
endif
endfunction