Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 clang-format 在函数定义之间添加双换行符:
void func1() { return; } void func2() { return; }
clang-format在函数定义之后没有控制换行符数量的选项。但是,它确实有一个选项 ,MaxEmptyLinesToKeep它将阻止它撤消您的两个空行。因此,您将不得不通过您的编辑器设计一些方法来执行此操作,并且clang-format设置MaxEmptyLinesToKeep为2或更高,将尊重您的决定。
clang-format
MaxEmptyLinesToKeep
2
如果你问IDE是否可以自动插入这些行,我不相信。您可以拥有任意数量的行,但只能通过手动输入。