diff options
author | Ike Devolder <ike.devolder@gmail.com> | 2019-07-05 21:21:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-05 21:21:16 +0200 |
commit | 45c8f9b334f1968f8841cc69b89da538cd5095aa (patch) | |
tree | e3742bd646a0e405a7b4450729b2a3abda12bf43 /python3 | |
parent | 7e95c3d880729a7f738c18944311d21d11f51951 (diff) | |
parent | 474a65dbf7f4678428676bcaa3af2e050aead35f (diff) | |
download | vdebug-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.py | 2 |
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. |