News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

Initialization list indentation with AStyle plugin

Started by matrem, April 20, 2008, 03:57:20 PM

Previous topic - Next topic

matrem

Hello,

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

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


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


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