Indent (a multiline) righthand side (list) expression assignment.
Meaning, for a (multiline) Statements.Right CommandExpressionAst (as apposed to Ast's that have already their own embedded indention, as e.g. a PipelineAst), I would like the righthand side to (optionally?) increase the indent:
Wrong way (?)
$List =
'One',
'Two',
'Three'
Correct way
$List =
'One',
'Two',
'Three'
Wrong way (?)
$4 = # or any lengthy variable name aka dot notation
2 + 2
Correct way
$4 = # or any lengthy variable name aka dot notation
2 + 2
Indent (a multiline) righthand side (list) expression assignment.
Meaning, for a (multiline)
Statements.RightCommandExpressionAst(as apposed toAst's that have already their own embedded indention, as e.g. aPipelineAst), I would like the righthand side to (optionally?) increase the indent:Wrong way (?)
Correct way
Wrong way (?)
Correct way