Update the test/example config file with vars

This commit is contained in:
Ben Jackson 2018-06-10 23:35:33 +01:00
commit 08eed4ff15
2 changed files with 22 additions and 18 deletions

View file

@ -165,6 +165,7 @@ class DebugSession( object ):
self._SetUpUI()
else:
vim.current.tabpage = self._uiTab
# FIXME: Encapsulation
self._stackTraceView._connection = self._connection
self._variablesView._connection = self._connection
@ -361,6 +362,9 @@ class DebugSession( object ):
vim.command( 'augroup END' )
def CloseDown( self ):
# We have to use a dict because of python's scoping/assignment rules (state
# = False would touch a state variable in handler, not in the enclosing
# scope)
state = { 'done': False }
def handler( self ):