Eclipse CDT代码格式化程序

时间:2015-11-04 14:54:50

标签: eclipse eclipse-cdt formatter

有没有办法强制Eclipse CDT Codestyle Formatter忽略空行?

作为一个例子,我们希望在C中的函数之间有2个空行,就像pep8 for python使用

// 2 lines between function 
void foo()
{

}


void bar()
{

}

但是格式化程序会将这些空白行删除为1行。那么我该如何改变这种行为呢?

// 1 lines between function 
void foo()
{

}

void bar()
{

}

感谢您的帮助

0 个答案:

没有答案