Support runInTerminal (sort of)

This commit is contained in:
Ben Jackson 2018-12-16 19:13:10 +00:00
commit 62e9335a10
3 changed files with 43 additions and 0 deletions

View file

@ -481,6 +481,11 @@ class DebugSession( object ):
'Unrecognised breakpoint event (undocumented): {0}'.format( reason ),
persist = True )
def OnRequest_runInTerminal( self, message ):
params = message[ 'arguments' ]
self._codeView.LaunchTerminal( params )
def Clear( self ):
self._codeView.Clear()
self._stackTraceView.Clear()