Reformat Attributes
Is there a way to change the way the reformat indents attributes?
Currently it does
[
Bindable(true),
Category("Appearance"),
DefaultValue(""),
Description("abc")
]
I would like
[
Bindable(true),
Category("Appearance"),
DefaultValue(""),
Description("a")
]
Please sign in to leave a comment.
The original post lost the formatting...the periods represent tab indentations.
Currently it does
[
........Bindable(true),
................Category("Appearance"),
................DefaultValue(""),
................Description("abc")
........]
I would like
[
........Bindable(true),
........Category("Appearance"),
........DefaultValue(""),
........Description("a")
]