diff --git a/python3/vimspector/variables.py b/python3/vimspector/variables.py index 87b7313..fe8c5b5 100644 --- a/python3/vimspector/variables.py +++ b/python3/vimspector/variables.py @@ -276,10 +276,9 @@ class VariablesView( object ): # user to interact with the balloon to expand it. body = message[ 'body' ] ref = body.get( 'variablesReference', 0 ) - icon = '+ ' if ref > 0 else '' display = [ 'Type: ' + body.get( 'type', '' ), - icon + 'Value: ' + body[ 'result' ] + 'Value: ' + body[ 'result' ] ] vim.eval( "balloon_show( {0} )".format( json.dumps( display ) ) )