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如何自定义代码格式化风格

这是当前的代码风格,

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