Tool/software: Code Composer Studio
Hello,
How can I stop the formatter from moving the semicolon to the next line, as shown below.
Thanks,
Stephen
//Before formatting int x,y; #define abc x = 2; y = 2 int main() { abc; } //After formatting int x,y; #define abc x = 2; y = 2 int main() { abc ; }