If I'm typing in some math in a C++ program, and I continue to multiple lines, and the first character of the next line is an open paren, the open/closed paren get placed at the very beginning of the line with no indent. VS.NET 2003. Example:
int someCalcValue = x + y +
()
instead of:
int someCalcValue = x + y +
()
The cursor is correctly indented when I go to type the open paren, it just jumps all the way to the left as soon as I type it and the close paren is inserted.