I am using Visual Studio to develop a C / C ++ library. I would like to know if there is a way to configure the auto-format tool (Ctrl + K, F) so that:
It automatically splits rows larger than 120 columns.
Format the function / method parameter as follows:
void myFunction(int parameterA, float parameterB, string paramterC)
Format the brackets as follows:
void myFunction() {
To summarize, I want something similar to what Eclipse does with it autoformat (Ctrl + Shift + F), which can be customized by editing the XML file.
c ++ visual-c ++ visual-studio
Alceu costa
source share