From 22ffc43129130c1761c7ad57f363900a1494b2b8 Mon Sep 17 00:00:00 2001 From: Ben Jackson Date: Sun, 3 Jun 2018 22:02:09 +0100 Subject: [PATCH] The +/- just makes it confusing --- python3/vimspector/variables.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 ) ) )