From 6d709d551c7441882f5b8e520d9a0aa066608a82 Mon Sep 17 00:00:00 2001 From: Ben Jackson Date: Sun, 10 Jun 2018 00:06:18 +0100 Subject: [PATCH] Use a prompt that matches the buffer output, so that it is more obvious --- 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 c3765de..eb4bd4e 100644 --- a/python3/vimspector/variables.py +++ b/python3/vimspector/variables.py @@ -62,7 +62,7 @@ class VariablesView( object ): utils.SetUpScratchBuffer( self._vars.win.buffer, 'vimspector.Variables' ) utils.SetUpPromptBuffer( self._watch.win.buffer, 'vimspector.Watches', - 'Watch: ', + 'Expression: ', 'vimspector#AddWatchPrompt' ) has_balloon = int( vim.eval( "has( 'balloon_eval' )" ) )