From f60b259dbc499b25cb5c8549cd365e22e2e8f653 Mon Sep 17 00:00:00 2001 From: dsych Date: Wed, 23 Dec 2020 23:12:57 -0500 Subject: [PATCH] adding type information for simple types --- python3/vimspector/variables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python3/vimspector/variables.py b/python3/vimspector/variables.py index 71abc45..f5930f8 100644 --- a/python3/vimspector/variables.py +++ b/python3/vimspector/variables.py @@ -311,7 +311,7 @@ class VariablesView( object ): else: # in case that there is nothing to expand, we need to simulate a response from 'variables' request # it returns [Variable] - self._variable_eval.variables = [Variable({'name': expression, 'value': body['result']})] + self._variable_eval.variables = [Variable({'name': expression, 'type': body['type'], 'value': body['result']})] self._DrawEval()