News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

Formatting Help. Indentation of braces with new functions.

Started by christian25555, February 01, 2013, 09:05:58 AM

Previous topic - Next topic

christian25555

Hello, I am pretty new to the Code::Blocks IDE. More used to Visual Studio, but since my professor is going to be using this IDE I decided to give it a try.

I have a pretty simple problem that I hope to resolve:

I usually format my functions as:

void foo(){
   //declarations

  //code//
}


However when it does the auto braces it shows up without any indentation as

void foo(){
}


Which is pretty annoying. The for loops in Code::Blocks formats the way I want my functions to format automatically:

for(int k = 0; k < 10; ++k){
   //code
   //code
}


I am just looking for a way for this to work more easily. I am pretty sure it has to do with the auto brace completion because when I turn it off it gives me the indent I want, however the auto brace is also a good feature. It works perfectly for for loops, I'm just not sure whats up with the function calls.

Thanks!