This repository was archived by the owner on Dec 15, 2022. It is now read-only.
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
Auto Indent for multi-line function call #136
Open
Description
Current result:
void main () {
function(a,
b,
c);
}
Expected result
void main () {
function(a,
b,
c);
}
Another similar case:
Current result:
void main() {
a = looooooooooooooooooooooooooooooooooog()
.looooooooooooooooooog();
}
Expected result
void main() {
a = looooooooooooooooooooooooooooooooooog()
.looooooooooooooooooog();
}