C++ 程序中的 VSCode 自动格式化通过对齐连续的注释来生成此代码:
if (true) { // if begin
// if inner part
int x = 3;
int a = 1; // some inner calculations
} // if end
// some outer calculations
int b = 1;
如何禁止注释对齐以获得下面的代码?
if (true) { // if begin
// if inner part
int x = 3;
int a = 1; // some inner calculations
}// if end
// some outer calculations
int b = 1;
我只能通过添加空行来防止它。