Is there any way to get AppCode to indent chained calls? For example it currently formats this;
Test.writeString("test", value: "Test")
.then {
print("1")
}
.always {
print("1")
}
I'd like it to format to;
Test.writeString("test", value: "Test")
.then {
print("1")
}
.always {
print("1")
}