User forums > Help

Formatting Help. Indentation of braces with new functions.

(1/1)

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:


--- Code: ---void foo(){
    //declarations

   //code//
}
--- End code ---

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


--- Code: ---void foo(){
}
--- End code ---

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


--- Code: ---for(int k = 0; k < 10; ++k){
    //code
    //code
}
--- End 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!

christian25555:
any insight?

Navigation

[0] Message Index

Go to full version