3

This opens a window of variable a:

v.v a

View variable b in the same window. How to do tihs?

v.v b

I know this can put them in the same window, but I want to view b at a later time

v.v a b
lebelinoz
  • 4,890
  • 10
  • 33
  • 56
Sean
  • 51
  • 2

1 Answers1

2

I figured it myself.

Var.AddWatch var

will do the job.

Sean
  • 51
  • 2
  • Be careful - I'm not quite sure whether `Var.View` and `Var.Watch` do the same thing. I would expect `Var.AddWatch` to do the same thing as `Var.Watch`, reusing the preexisting window for another watch expression. – HelpingHand Apr 09 '20 at 16:35