Comments in Command-Editor

Hi,

is it possible to add comments to the Command-Editor?

// and -- don't work properly.

// works for me. What goes wrong when you try it?

Set SOURCE=Left //Test
dopusrt /cmd BeyondCompare
@nodeselect

The command will not be executed when it is followed by a comment.
When I delete the comment everything works fine.

Therefore I thought that the doubleslash is not correct.

Ah, // only works at the start of a line to make the whole line a comment.

There isn't a way to put comments on the same line as commands.

i.e. These should work:

Set SOURCE=Left //Test dopusrt /cmd BeyondCompare @nodeselect

//Test Set SOURCE=Left dopusrt /cmd BeyondCompare @nodeselect

Yes, they do.

Thanks, leo!