This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

F29H85X-SOM-EVM: CCS20代码保存时格式化怎么设置?

Part Number: F29H85X-SOM-EVM

ccs20代码格式化在哪里设置啊,找不到,默认的不太习惯

现在保存以后是这个样子的

if (a > b) {
  a++;
}

我想把格式改成下面这样

if (a > b) 
{
  a++;
}