Author Topic: Initialization list indentation with AStyle plugin  (Read 3416 times)

Offline matrem

  • Single posting newcomer
  • *
  • Posts: 6
Initialization list indentation with AStyle plugin
« on: April 20, 2008, 03:57:20 pm »
Hello,

I can't correctly configure indentation of c++ initialization list. (codeblocks 8.02 under ubuntu).

I wan't something that looks like this :
Code
C::C()
: v()
{
}

But I always have this
Code
C::C()
          : v()
{
}

Is there an indentation configuration that permits to have the first example ?