I think this is a very interesting feature, but I also think it should be heavily customizable for multiple reasons. Different coding styles, different habits...
For example, I'm actually not bothered by this brace autocompletion system, but the new line alignment (from the latest nightly) just doesn't fit my coding habits. If I want to type this :
mMovement = Vector(
0.0f, 0.0f, 0.0f
);
... I write the first line, press enter :
... and I have to remove all the spaces.
I'm also not pleased by the way bracket completion works. If the caret is placed before a ')' and you try to write another, it always "replaces" the one that is already here. This is annoying in this kind of situation :
someFunction(someOtherFunction(|));
If you accidentally press [Del.] (happens to me all the time, really...) and want to type the ')' back, you either have to type it twice, or move the caret after the last ')' then type it once (it's a two key process anyway, and it gets even worse when there are many brackets).
Same goes for quotation marks :
Press [Del.] or [Backspace] then type a quotation mark, you'll end up with this :
I don't know what could be done to solve this, maybe track for unclosed brackets / q. marks ?
Anyway thanks for the work you're putting on this, C::B really is my favorite IDE
