• Forum
  • Lounge
  • Code::blocks - I want it to help me more

 
 
Code::blocks - I want it to help me more

closed account (jvqpDjzh)
Hello!

How to make code::blocks update the code style every time I write something different from the chosen code style? (like VS)

Example:
My default code style for a function is:
1
2
3
4
void function()
{
    //This is the way I like more for parenthesis
}

But I have just written (and will remain so):
1
2
3
void function(){
    //I don't want parenthesis like those
}


I know it's not a so big problem, but it could help me more to read the code..

Thank you in advance.
Last edited on
C::B does not have autoformatting the way VS does, but I think there is default one you can call manually: right click file in project explorer window and look for "format this file..." menu item
Topic archived. No new replies allowed.