We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9beea75 commit 567eb8cCopy full SHA for 567eb8c
plugin/python/vdebug/event.py
@@ -165,7 +165,8 @@ def execute(self,runner):
165
context_res = runner.api.property_get(name)
166
rend = vdebug.ui.vimui.ContextGetResponseRenderer(context_res)
167
output = rend.render(pointer_index - 1)
168
- runner.ui.watchwin.delete(lineno,lineno+1)
+ if vdebug.opts.Options.get('watch_window_style') == 'expanded':
169
+ runner.ui.watchwin.delete(lineno,lineno+1)
170
runner.ui.watchwin.insert(output.rstrip(),lineno-1,True)
171
172
class WatchWindowHideEvent(Event):
0 commit comments