Code::Blocks Forums

User forums => Help => Topic started by: christian25555 on February 01, 2013, 09:05:58 AM

Title: Formatting Help. Indentation of braces with new functions.
Post by: christian25555 on February 01, 2013, 09:05:58 AM
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!
Title: Re: Formatting Help. Indentation of braces with new functions.
Post by: christian25555 on February 05, 2013, 05:13:58 AM
any insight?