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)

 

0
1 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.

0

Please sign in to leave a comment.