Open
Description
It'll be great to have option that allow to customize indentation between colon/comma and initializer in constructor. It looks like currently single space is hardcoded.
For example:
#include <string>
class Test
{
public:
Test(int int_argument, const std::string& string_argument);
private:
int int_argument_;
std::string string_argument_;
};
Test::Test(int int_argument, const std::string& string_argument)
: int_argument_(int_argument)
, string_argument_(string_argument)
{
}
Basically, it's necessary to make this indentation follow IndentWidth
(4 in this example).