Combine all multiline functions definitions to one line automatically ?
Is it possible to combine all multiline functions definitions to one line automatically ?
i.e. convert:
void
Func(
int a)
to : void Func(int a)
Please sign in to leave a comment.
Try turning off "C++ | Formatting Style | Line breaks and Wrapping | Keep existing line breaks", with this setting off R#'s code formatter should remove the extra new lines. Alternatively, you can try using the built-in clang-format formatter.