In instances of nested expressions, it would be useful to be able to press tab to indent a line. I propose inserting "n" spaces when pressing tab.
Coding style of course varies, but for readability, I rather dislike the following
Trim(Locals.SomeLocal) == "" ? (Locals.SomeLocal = "foo",Locals.AnotherLocal = "bar", Locals.SomethingOrRather = "zoo") : False
...and much prefer this styling:
Trim(Locals.SomeLocal) == "" ? (
Locals.SomeLocal = "foo",
Locals.AnotherLocal = "bar",
Locals.SomethingOrRather = "zoo" ) : False
...but at present the latter is tedious because one has to insert a lot of whitespace manually or worse yet, use another text editor and paste it into TestStand. It would be nice if TestStand's expression editor supported this basic feature available in almost every text editor or IDE.
Thanks,
Mr. Jim