summaryrefslogtreecommitdiff
path: root/python3
diff options
context:
space:
mode:
authorIke Devolder <ike.devolder@gmail.com>2019-07-05 21:21:16 +0200
committerGitHub <noreply@github.com>2019-07-05 21:21:16 +0200
commit45c8f9b334f1968f8841cc69b89da538cd5095aa (patch)
treee3742bd646a0e405a7b4450729b2a3abda12bf43 /python3
parent7e95c3d880729a7f738c18944311d21d11f51951 (diff)
parent474a65dbf7f4678428676bcaa3af2e050aead35f (diff)
downloadvdebug-45c8f9b334f1968f8841cc69b89da538cd5095aa.zip
Merge pull request #415 from vim-vdebug/fix-395
when coming back from eval, pass context 0 to the event
Diffstat (limited to 'python3')
-rw-r--r--python3/vdebug/debugger_interface.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python3/vdebug/debugger_interface.py b/python3/vdebug/debugger_interface.py
index b154291..dc4c62c 100644
--- a/python3/vdebug/debugger_interface.py
+++ b/python3/vdebug/debugger_interface.py
@@ -147,7 +147,7 @@ class DebuggerInterface:
def get_context(self):
"""Get all the variables in the default context
"""
- self.session_handler.dispatch_event("get_context")
+ self.session_handler.dispatch_event("get_context", 0)
def detach(self):
"""Detach the debugger, so the script runs to the end.