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.

ccs20如何自定义代码格式化风格

这是当前的代码风格,

void func(int a){
a++;
}
“{”和函数名在同一行,我想要的是“{”另起一行
void func(int a)
{
    a++;
}
,就是希望能够和vscode代码格式化的结果保持一致。