I want to setup my clang-format to format this:
double var1, var2,
var3, var4;
into this:
double var1, var2,
var3, var4;
Is there a way to achive this?
If it cannot be set to align it, can you at least set it so it leaves it alone when you write it like the second example?