I *love* Visual Assist X, and recognize what it's doing (parsing and formatting) is incredibly difficult.
WISH: Indented class definition.
EXPLANATION:  We prefer to indent state within our class definitions, to show that they are not at "global" or "file-level".
The following will not indent the class contents (e.g., all the class contents are auto-placed in the left column)(Visual Assist X 10.6.1856.0 built 2011.08.24):
class MyClass
{
  protected:
    int a_;
  public:
    MyClass(int a);
    ~MyClass(void);
};