Is there any way to to automatically insert spaces between function definitions. E.g. my initial sources are:
void
func1()
{
// func1 body.
}
void
func2()
{
// func2 body.
}
I would like it to be reformatted to:
void
func1()
{
// func1 body.
}
void
func2()
{
// func2 body.
}
And if there are more line breaks, fixed number of them should be kept.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…