10

I am using Visual Studio Express 2013

After I use an access specifier, I want Visual Studio to automatically indent my members another 4 spaces further than my access specifier; but instead, it keeps the members in line with the access specifier. Is there a way to fix this?

Example: This is what is does:

class MyClass {
    public:
    int myInt;
};

This is what I want:

class MyClass {
    public:
        int myInt;
};
Driggers
  • 111
  • 4

1 Answers1

1

No, there isn't a way to do this in Visual Studio.

However, a feature request has been made.

Lightness Races in Orbit
  • 378,754
  • 76
  • 643
  • 1,055